Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/8687265c9a2f26a0ee40f80366d4f17a3d600fac
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/8687265c9a2f26a0ee40f80366d4f17a3d600fac
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/8687265c9a2f26a0ee40f80366d4f17a3d600fac

The branch, master has been updated
       via  8687265c9a2f26a0ee40f80366d4f17a3d600fac (commit)
      from  a8ee1c2d63b79672c39a2c40c4067f05b6afb799 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=8687265c9a2f26a0ee40f80366d4f17a3d600fac
commit 8687265c9a2f26a0ee40f80366d4f17a3d600fac
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    fix stupid typo in previous commit

diff --git a/frontends/gtk/login.c b/frontends/gtk/login.c
index c8ec550..02951aa 100644
--- a/frontends/gtk/login.c
+++ b/frontends/gtk/login.c
@@ -139,7 +139,7 @@ get_login_description(struct nsurl *url,
        NSLOG(netsurf, INFO,
              "key:%s url:%s realm:%s str:%s", key, url_s, realm, str);
 
-       if ((str != NULL) && (strcmp(key, str) != 0) {
+       if ((str != NULL) && (strcmp(key, str) != 0)) {
                *out_str = str;
        } else {
                /* no message so fallback */


-----------------------------------------------------------------------

Summary of changes:
 frontends/gtk/login.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontends/gtk/login.c b/frontends/gtk/login.c
index c8ec550..02951aa 100644
--- a/frontends/gtk/login.c
+++ b/frontends/gtk/login.c
@@ -139,7 +139,7 @@ get_login_description(struct nsurl *url,
        NSLOG(netsurf, INFO,
              "key:%s url:%s realm:%s str:%s", key, url_s, realm, str);
 
-       if ((str != NULL) && (strcmp(key, str) != 0) {
+       if ((str != NULL) && (strcmp(key, str) != 0)) {
                *out_str = str;
        } else {
                /* no message so fallback */


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to