summaryrefslogtreecommitdiff
path: root/src/form.cc
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2012-09-20 17:14:00 +0000
committercorvid <corvid@lavabit.com>2012-09-20 17:14:00 +0000
commit97a315bf349a757927f4a55a6cbe186f20d384af (patch)
tree2bd6d7e3568d6503c60b05519aa3b4b316695e2f /src/form.cc
parent7dd421be20f7ed0e639208745107c05990f0b2d6 (diff)
BUG_MSG consistency
Diffstat (limited to 'src/form.cc')
-rw-r--r--src/form.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/form.cc b/src/form.cc
index 3e2cb78e..11f27b47 100644
--- a/src/form.cc
+++ b/src/form.cc
@@ -327,7 +327,7 @@ void Html_tag_open_form(DilloHtml *html, const char *tag, int tagsize)
if ((attrbuf = a_Html_get_attr(html, tag, tagsize, "action")))
action = a_Html_url_new(html, attrbuf, NULL, 0);
else {
- BUG_MSG("action attribute required for <form>\n");
+ BUG_MSG("action attribute is required for <form>\n");
action = a_Url_dup(html->base_url);
}
content_type = DILLO_HTML_ENC_URLENCODED;