summaryrefslogtreecommitdiff
path: root/src/cgi.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/cgi.sml')
-rw-r--r--src/cgi.sml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cgi.sml b/src/cgi.sml
index 9099d429..d8c7c3ec 100644
--- a/src/cgi.sml
+++ b/src/cgi.sml
@@ -36,7 +36,6 @@ val () = addProtocol {name = "cgi",
linkDynamic = "-lurweb_cgi",
persistent = false,
code = fn () => box [string "void uw_global_custom() {",
- newline,
case getSigFile () of
NONE => box []
| SOME sf => box [string "extern char *uw_sig_file;",
@@ -45,6 +44,8 @@ val () = addProtocol {name = "cgi",
string sf,
string "\";",
newline],
+ string "uw_setup_limits();",
+ newline,
string "}",
newline]}