Fixed a bug in pagestat
authorJens Nyberg <jens.nyberg@gmail.com>
Thu, 14 Feb 2013 23:57:36 +0000 (00:57 +0100)
committerChristoph Lohmann <20h@r-36.net>
Fri, 15 Feb 2013 16:42:06 +0000 (17:42 +0100)
Forgot to add a null character at the end.

Signed-off-by: Christoph Lohmann <20h@r-36.net>
surf.c

diff --git a/surf.c b/surf.c
index b36fc4a..78226b2 100644 (file)
--- a/surf.c
+++ b/surf.c
@@ -84,7 +84,7 @@ static gboolean showxid = FALSE;
 static char winid[64];
 static gboolean usingproxy = 0;
 static char togglestat[5];
-static char pagestat[2];
+static char pagestat[3];
 
 static void beforerequest(WebKitWebView *w, WebKitWebFrame *f,
                WebKitWebResource *r, WebKitNetworkRequest *req,
@@ -1066,12 +1066,15 @@ static void
 getpagestat(Client *c) {
        const char *uri = geturi(c);
 
-       if(strstr(uri, "https://") == uri)
+       if(strstr(uri, "https://") == uri) {
                pagestat[0] = c->sslfailed ? 'U' : 'T';
-       else
+       } else {
                pagestat[0] = '-';
+       }
 
        pagestat[1] = usingproxy ? 'P' : '-';
+       pagestat[2] = '\0';
+
 }
 
 static void