]> saetta.ns0.it Git - libzakcgi/commitdiff
Removed debug refactoring parse_stdin. refactor_stdin
authorAndrea Zagli <azagli@libero.it>
Fri, 12 May 2017 15:40:47 +0000 (17:40 +0200)
committerAndrea Zagli <azagli@libero.it>
Fri, 12 May 2017 15:40:47 +0000 (17:40 +0200)
src/main.c
tests/env.c

index 7dee7eee6694053e5f52301b0c67dcc85a182d7b..1da67d40d63d13726ff3b2983014ae4ab1fe57aa 100644 (file)
@@ -853,11 +853,6 @@ static GPtrArray
                                                        b->length = length;
 
                                                        g_ptr_array_add (ar, b);
-
-                                                       FILE *fout;
-                                                       fout = fopen (g_strdup_printf("/tmp/blocco_loop_%d_%d_%d.txt", i, start, length), "wb");
-                                                       fwrite (b->data, b->length, 1, fout);
-                                                       fclose (fout);
                                                }
 
                                        start = i;
@@ -876,21 +871,6 @@ static GPtrArray
                        b->length = length;
 
                        g_ptr_array_add (ar, b);
-
-                       FILE *fout;
-                       fout = fopen (g_strdup_printf("/tmp/blocco_loop_%d_%d_%d.txt", i, start, length), "wb");
-                       fwrite (b->data, b->length, 1, fout);
-                       fclose (fout);
-               }
-
-       for (i = 0; i < ar->len; i++)
-               {
-                       FILE *fout;
-                       Block *b;
-                       b = (Block *)g_ptr_array_index(ar, i);
-                       fout = fopen (g_strdup_printf("/tmp/blocco_%d.txt", i), "wb");
-                       fwrite (b->data, b->length, 1, fout);
-                       fclose (fout);
                }
 
        return ar;
index f578a739fc971a202d7c7327bc50d6b3bce973fa..545e572d06db0ac3e1033a97132e4a7458cd9fbf 100644 (file)
@@ -120,7 +120,7 @@ main (int argc, char *argv[])
        GHashTable *ht;
        gchar *env;
        gchar *ret;
-       sleep(10);
+
        zakcgimain = zak_cgi_main_new ();
 
        str = g_string_new ("<html>\n"