aboutsummaryrefslogtreecommitdiff
path: root/cforum.c
diff options
context:
space:
mode:
Diffstat (limited to 'cforum.c')
-rw-r--r--cforum.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cforum.c b/cforum.c
index 7fc738e..319e9e1 100644
--- a/cforum.c
+++ b/cforum.c
@@ -6,7 +6,7 @@
#include "ctl.h" /* Controllers. */
#include "err.h" /* HTTP errors. */
#include "site.h" /* Site settings. Defines global struct site. */
-#include "query.h" /* Query functions. Defines global string qs. */
+#include "query.h" /* Query functions. Defines global struct query. */
#define MAXERR 300
@@ -57,13 +57,13 @@ main(int argc, char *argv[])
sqlite3_finalize(res);
/*
- * The global variable qs is set to the query string, or the
- * program dies. From now on, qs is assumed to be set.
+ * The global struct query is set, or the program dies.
+ * From now on, query is assumed to be set.
*/
- setqs();
+ setquery();
/* Handle request. */
- if(!qs || !*qs)
+ if(!*query.string)
front();
/* INSERT CONDITIONS HERE */
else