Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/07c8ea22a5b1d8e10db20a24127332da8c7e2b72
...commit
http://git.netsurf-browser.org/netsurf.git/commit/07c8ea22a5b1d8e10db20a24127332da8c7e2b72
...tree
http://git.netsurf-browser.org/netsurf.git/tree/07c8ea22a5b1d8e10db20a24127332da8c7e2b72
The branch, master has been updated
via 07c8ea22a5b1d8e10db20a24127332da8c7e2b72 (commit)
from 1820bb7e637206b7d4b103d32aff364e5e5b529c (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=07c8ea22a5b1d8e10db20a24127332da8c7e2b72
commit 07c8ea22a5b1d8e10db20a24127332da8c7e2b72
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>
fix unused variable warning on non public suffix library builds
diff --git a/content/urldb.c b/content/urldb.c
index b6eaf63..a26e785 100644
--- a/content/urldb.c
+++ b/content/urldb.c
@@ -3356,9 +3356,11 @@ bool urldb_set_cookie(const char *header, nsurl *url,
nsurl *referer)
do {
struct cookie_internal_data *c;
- const char *suffix;
char *dot;
size_t len;
+#ifdef WITH_NSPSL
+ const char *suffix;
+#endif
c = urldb_parse_cookie(url, &cur);
if (!c) {
-----------------------------------------------------------------------
Summary of changes:
content/urldb.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/content/urldb.c b/content/urldb.c
index b6eaf63..a26e785 100644
--- a/content/urldb.c
+++ b/content/urldb.c
@@ -3356,9 +3356,11 @@ bool urldb_set_cookie(const char *header, nsurl *url,
nsurl *referer)
do {
struct cookie_internal_data *c;
- const char *suffix;
char *dot;
size_t len;
+#ifdef WITH_NSPSL
+ const char *suffix;
+#endif
c = urldb_parse_cookie(url, &cur);
if (!c) {
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org