]> saetta.ns0.it Git - libzakcgi/commitdiff
Removed syslog (closes #973).
authorAndrea Zagli <azagli@libero.it>
Sat, 26 Mar 2016 11:22:53 +0000 (12:22 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 26 Mar 2016 15:36:57 +0000 (16:36 +0100)
tests/cookies.c
tests/env.c
tests/session.c

index 8d755c000fac3360d7428e9353ab9ddefe063a1b..77deaec7db2042e7dc6e06194b2219f64a5a6352 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2016 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public
@@ -16,7 +16,6 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include <syslog.h>
 #include <string.h>
 
 #include <gio/gio.h>
@@ -61,7 +60,7 @@ main (int argc, char *argv[])
                                "\n%s",
                                zak_cgi_main_set_cookie ("SECONDO", "il secondo cookie", NULL, NULL, "/", FALSE, TRUE));
 
-       syslog (LOG_MAKEPRI(LOG_SYSLOG, LOG_DEBUG), "header: %s", header->str);
+       g_message ("header: %s", header->str);
 
        zak_cgi_main_out (header->str, str->str);
        g_string_free (str, TRUE);
index 77552bbb86193ee5d77ec94dc11ec1dd7bb17310..c56c557a20f1f0fc252d4dcd5f5ad63ddd36308f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2016 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public
@@ -16,7 +16,6 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include <syslog.h>
 #include <string.h>
 
 #include <gio/gio.h>
@@ -134,7 +133,7 @@ main (int argc, char *argv[])
 
        env = zak_cgi_main_get_stdin (zakcgimain);
        zak_cgi_main_parse_stdin (env, NULL);
-       /*syslog (LOG_MAKEPRI(LOG_SYSLOG, LOG_DEBUG), "stdin: %s", env);*/
+       /*g_message ("stdin: %s", env);*/
        if (env != NULL)
                {
                        g_string_append_printf (str,
index ef18155a346dbd916ca17a829b5cf30b908ab14c..bdbe0b2fc0744c2cdedf9a653a221065dc45868f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2016 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public
@@ -16,8 +16,6 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include <syslog.h>
-
 #include <main.h>
 #include <session.h>