Introduction
Introduction Statistics Contact Development Disclaimer Help
tChanged character for non-encrypted page - surf - customized build of surf, th…
git clone git://src.adamsgaard.dk/surf
Log
Files
Refs
README
LICENSE
---
commit 24f0f831972ec19ac0663a1fbe00a280e736d4f5
parent 3c1ed5d56af13f09a81beb00c59464972c36b2f0
Author: Jens Nyberg <[email protected]>
Date: Tue, 12 Feb 2013 21:26:24 +0100
Changed character for non-encrypted page
-/T/U: No SSL, Trusted SSL, Untrusted SSL
Signed-off-by: Christoph Lohmann <[email protected]>
Diffstat:
M surf.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
---
diff --git a/surf.c b/surf.c
t@@ -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' : '-';
}
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.