From abf3c0f80afe12c46566e040a61884650d081793 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Wed, 10 Sep 2003 22:40:32 +0000 Subject: [project @ 2003-09-10 22:40:32 by jmb] Fix Drawfile module check. Add else statement to box.c:788 svn path=/import/netsurf/; revision=282 --- render/box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'render') diff --git a/render/box.c b/render/box.c index bbe02c732..7b96669a4 100644 --- a/render/box.c +++ b/render/box.c @@ -785,7 +785,7 @@ struct result box_input(xmlNode *n, struct status *status, } } - if (stricmp(type, "password") == 0) + else if (stricmp(type, "password") == 0) { box = box_create(style, NULL, 0); box->gadget = gadget = xcalloc(1, sizeof(struct gui_gadget)); -- cgit v1.2.3