aboutsummaryrefslogtreecommitdiff
path: root/src/clog.c
diff options
context:
space:
mode:
authorMichael McVady <femtonaut@gmail.com>2021-11-15 22:02:53 -0500
committerMichael McVady <femtonaut@gmail.com>2021-11-15 22:02:53 -0500
commitba99adb890ac823ec5505861071f03ebcb889ac1 (patch)
tree0cd074310e38390eb725d1de463e4278ac512d37 /src/clog.c
parent40441e01b6e73a0a1d7f06377b3607f151aed65b (diff)
Disable seccomp/add seccomp tracing
Diffstat (limited to 'src/clog.c')
-rw-r--r--src/clog.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/clog.c b/src/clog.c
index 9bce41c..ea5c9b2 100644
--- a/src/clog.c
+++ b/src/clog.c
@@ -31,8 +31,8 @@ int page(struct http_request *req)
/* sql stuff */
struct kore_pgsql sql;
- // char *name;
- // int rows, i;
+ char *name;
+ int rows, i;
/* req->status = HTTP_STATUS_INTERNAL_ERROR; */
@@ -55,23 +55,23 @@ int page(struct http_request *req)
kore_log(1, "here!");
-// /*
-// * Now we can fire off the query, once it returns we either have
-// * a result on which we can operate or an error occurred.
-// */
-// if (!kore_pgsql_query(&sql, "SELECT * FROM coders")) {
-// kore_pgsql_logerror(&sql);
-// goto out;
-// }
-//
-// /*
-// * Iterate over the result and dump it to somewhere.
-// */
-// rows = kore_pgsql_ntuples(&sql);
-// for (i = 0; i < rows; i++) {
-// name = kore_pgsql_getvalue(&sql, i, 0);
-// kore_log(LOG_NOTICE, "name: '%s'", name);
-// }
+ /*
+ * Now we can fire off the query, once it returns we either have
+ * a result on which we can operate or an error occurred.
+ */
+ if (!kore_pgsql_query(&sql, "SELECT * FROM entries")) {
+ kore_pgsql_logerror(&sql);
+ goto out;
+ }
+
+ /*
+ * Iterate over the result and dump it to somewhere.
+ */
+ rows = kore_pgsql_ntuples(&sql);
+ for (i = 0; i < rows; i++) {
+ name = kore_pgsql_getvalue(&sql, i, 0);
+ kore_log(LOG_NOTICE, "name: '%s'", name);
+ }
out: ;