[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
This commit is contained in:
John Mark Bell 2003-09-10 22:40:32 +00:00
parent b858507d90
commit abf3c0f80a
2 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@ RMEnsure UtilityModule 3.70 RMEnsure CallASWI 0.02 Error NetSurf requires the Ca
| Ensure DrawFile module is installed
| http://acorn.riscos.com/riscos/releases/drawfile.arc
| Should be installed in !System.310.Modules
RMEnsure UtilityModule 3.50 RMEnsure DrawFile 1.30 RMLoad System:Modules.DrawFile
RMEnsure UtilityModule 3.50 RMEnsure DrawFile 1.30 Error NetSurf requires the DrawFile module
RMEnsure DrawFile 1.30 RMLoad System:Modules.DrawFile
RMEnsure DrawFile 1.30 Error NetSurf requires the DrawFile module
| Ensure SharedUnixLibrary is installed
| http://www.chocky.org/unix/usage.html

View File

@ -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));