From: Andrea Zagli Date: Sat, 30 Jan 2016 10:27:57 +0000 (+0100) Subject: Regex for url matching must the whole url. X-Git-Tag: v0.1.0~3^2~21 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=9d763cd3221739231a5ec3ca9561fb9c95732399;p=libzakcgi Regex for url matching must the whole url. --- diff --git a/src/url.c b/src/url.c index 2712953..26c475f 100644 --- 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