about summary refs log tree commit diff
path: root/surf.c
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2015-11-20 16:48:18 +0100
committerQuentin Rameau <quinq@fifth.space>2015-11-20 16:48:18 +0100
commit690118133dff7797a58cacdf9fe1e9e73ca99d7f (patch)
tree91c36fbadc1a71ab69a8edd47b72414873a47855 /surf.c
parentAdapt loaduri() (diff)
downloadsurf-690118133dff7797a58cacdf9fe1e9e73ca99d7f.tar.gz
surf-690118133dff7797a58cacdf9fe1e9e73ca99d7f.tar.bz2
surf-690118133dff7797a58cacdf9fe1e9e73ca99d7f.zip
Adapt page statistics
Rename *pagestat to plural *pagestats, and resize array to reflect
missing proxy parameter.
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/surf.c b/surf.c
index 52d9cdd..81bd03e 100644
--- a/surf.c
+++ b/surf.c
@@ -108,7 +108,7 @@ static Window embed = 0;
 static gboolean showxid = FALSE;
 static char winid[64];
 static char togglestat[9];
-static char pagestat[3];
+static char pagestats[2];
 static GTlsDatabase *tlsdb;
 static int cookiepolicy;
 static char *stylefile = NULL;
@@ -143,7 +143,7 @@ static gboolean permissionrequested(WebKitWebView *v,
 		WebKitPermissionRequest *r, Client *c);
 static const char *getatom(Client *c, int a);
 static void gettogglestat(Client *c);
-static void getpagestat(Client *c);
+static void getpagestats(Client *c);
 static char *geturi(Client *c);
 static const gchar *getstyle(const char *uri);
 static void setstyle(Client *c, const char *stylefile);
@@ -1420,13 +1420,11 @@ gettogglestat(Client *c)
 }
 
 void
-getpagestat(Client *c)
+getpagestats(Client *c)
 {
-	const char *uri = geturi(c);
-
 	pagestats[0] = c->tlsflags > G_TLS_CERTIFICATE_VALIDATE_ALL ? '-' :
 	    c->tlsflags > 0 ? 'U' : 'T';
-	pagestat[1] = '\0';
+	pagestats[1] = '\0';
 }
 
 void
@@ -1436,17 +1434,17 @@ updatetitle(Client *c)
 
 	if (showindicators) {
 		gettogglestat(c);
-		getpagestat(c);
+		getpagestats(c);
 
 		if (c->linkhover) {
-			t = g_strdup_printf("%s:%s | %s", togglestat, pagestat,
+			t = g_strdup_printf("%s:%s | %s", togglestat, pagestats,
 			                    c->linkhover);
 		} else if (c->progress != 100) {
 			t = g_strdup_printf("[%i%%] %s:%s | %s", c->progress,
-			                    togglestat, pagestat,
+			                    togglestat, pagestats,
 			                    c->title == NULL ? "" : c->title);
 		} else {
-			t = g_strdup_printf("%s:%s | %s", togglestat, pagestat,
+			t = g_strdup_printf("%s:%s | %s", togglestat, pagestats,
 			                    c->title == NULL ? "" : c->title);
 		}