The Item struct is not used.
[surf.git] / surf.c
diff --git a/surf.c b/surf.c
index 1c999dd..17f7750 100644 (file)
--- 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,
@@ -1064,8 +1058,17 @@ gettogglestat(Client *c){
 
 static void
 getpagestat(Client *c) {
-       pagestat[0] = c->sslfailed ? 'U' : 'T';
+       const char *uri = geturi(c);
+
+       if(strstr(uri, "https://") == uri) {
+               pagestat[0] = c->sslfailed ? 'U' : 'T';
+       } else {
+               pagestat[0] = '-';
+       }
+
        pagestat[1] = usingproxy ? 'P' : '-';
+       pagestat[2] = '\0';
+
 }
 
 static void