]> saetta.ns0.it Git - libzakcgi/commitdiff
Regex for url matching must the whole url.
authorAndrea Zagli <azagli@libero.it>
Sat, 30 Jan 2016 10:27:57 +0000 (11:27 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 30 Jan 2016 10:27:57 +0000 (11:27 +0100)
src/url.c

index 2712953639bc257658e5130aa3c0487f7042bcc9..26c475f6c18d98c28e0e90eadbe3aae83e2626d8 100644 (file)
--- a/src/url.c
+++ b/src/url.c
@@ -142,7 +142,7 @@ zak_cgi_url_dispatch (ZakCgiUrl *url)
                        while (g_hash_table_iter_next (&iter, &key, &value))
                                {
                                        error = NULL;
-                                       str_regex = g_strdup_printf ("%s$", (gchar *)key);
+                                       str_regex = g_strdup_printf ("^%s$", (gchar *)key);
                                        regex = g_regex_new (str_regex, 0, 0, &error);
                                        g_free (str_regex);
                                        if (regex == NULL