diff options
| author | 2013-02-12 21:26:24 +0100 | |
|---|---|---|
| committer | 2013-02-12 21:32:07 +0100 | |
| commit | 24f0f831972ec19ac0663a1fbe00a280e736d4f5 (patch) | |
| tree | 7a4f9396cfd3f67544ca9396d56c3cd041524bca /surf.c | |
| parent | Removed progress indicator (diff) | |
Changed character for non-encrypted page
-/T/U: No SSL, Trusted SSL, Untrusted SSL
Signed-off-by: Christoph Lohmann <20h@r-36.net>
Diffstat (limited to '')
| -rw-r--r-- | surf.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1064,7 +1064,13 @@ 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' : '-'; } |
