X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=surf.c;h=17f7750cd16dd416205fb1a43078019e22b93b97;hb=3e972f8e2a170f15e76fae7dc4de656963deb89b;hp=b36fc4a969e78a5f242082ba73d16c6859e7f2a5;hpb=24f0f831972ec19ac0663a1fbe00a280e736d4f5;p=surf.git diff --git a/surf.c b/surf.c index b36fc4a..17f7750 100644 --- a/surf.c +++ b/surf.c @@ -52,12 +52,6 @@ typedef struct Client { gboolean zoomed, fullscreen, isinspecting, sslfailed; } Client; -typedef struct { - char *label; - void (*func)(Client *c, const Arg *arg); - const Arg arg; -} Item; - typedef struct { guint mod; guint keyval; @@ -84,7 +78,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 +1060,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