From: Andrea Zagli Date: Sun, 28 Aug 2011 13:35:53 +0000 (+0200) Subject: @Pages didn't work. X-Git-Tag: 0.2.0^0 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=12d668687885003bb3c56dc4287752aa6799f1da;p=reptool%2Flibreptool.bug @Pages didn't work. fixes #32 --- diff --git a/src/rptreport.c b/src/rptreport.c index c7886a3..748c94e 100644 --- a/src/rptreport.c +++ b/src/rptreport.c @@ -2566,11 +2566,11 @@ gchar ret = g_strdup (""); real_special = g_strstrip (g_strdup (special)); - if (strncmp (real_special, "@Page", 5) == 0) + if (g_strcmp0 (real_special, "@Page") == 0) { ret = g_strdup_printf ("%d", priv->cur_page); } - else if (strncmp (real_special, "@Pages", 6) == 0) + else if (g_strcmp0 (real_special, "@Pages") == 0) { ret = g_strdup ("@Pages"); }