Introduction
Introduction Statistics Contact Development Disclaimer Help
There's no need to call geturi() again in loadchanged - surf - surf browser, a …
git clone git://git.suckless.org/surf
Log
Files
Refs
README
LICENSE
---
commit 5e2216c41434219e60ca52bc5f10d34fddbca964
parent 4a1876eb80dca2c2a3636a7d3af55a34916bb03e
Author: Quentin Rameau <[email protected]>
Date: Fri, 12 May 2017 00:03:57 +0200
There's no need to call geturi() again in loadchanged
Also call the variable “uri” instead of “title” which was ambiguous
regarding what it is.
Diffstat:
M surf.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/surf.c b/surf.c
@@ -1375,23 +1375,23 @@ loadfailedtls(WebKitWebView *v, gchar *uri, GTlsCertifi…
void
loadchanged(WebKitWebView *v, WebKitLoadEvent e, Client *c)
{
- const char *title = geturi(c);
+ const char *uri = geturi(c);
switch (e) {
case WEBKIT_LOAD_STARTED:
- setatom(c, AtomUri, title);
- c->title = title;
+ setatom(c, AtomUri, uri);
+ c->title = uri;
c->https = c->insecure = 0;
- seturiparameters(c, geturi(c));
+ seturiparameters(c, uri);
if (c->errorpage)
c->errorpage = 0;
else
g_clear_object(&c->failedcert);
break;
case WEBKIT_LOAD_REDIRECTED:
- setatom(c, AtomUri, title);
- c->title = title;
- seturiparameters(c, geturi(c));
+ setatom(c, AtomUri, uri);
+ c->title = uri;
+ seturiparameters(c, uri);
break;
case WEBKIT_LOAD_COMMITTED:
c->https = webkit_web_view_get_tls_info(c->view, &c->cert,
You are viewing proxied material from suckless.org. 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.