Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/6b645664fe9c8f8d8a464...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/6b645664fe9c8f8d8a46493...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/6b645664fe9c8f8d8a46493a6...
The branch, master has been updated
via 6b645664fe9c8f8d8a46493a6e00ef32b753a642 (commit)
from 5eefe0016384c85d1d09409d65d79f1f41208adb (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=6b645664fe9c8f8d8a4...
commit 6b645664fe9c8f8d8a46493a6e00ef32b753a642
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
add missing includes
diff --git a/content/llcache.c b/content/llcache.c
index e5d188e..bd30d17 100644
--- a/content/llcache.c
+++ b/content/llcache.c
@@ -34,6 +34,7 @@
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
+#include <strings.h>
#include <curl/curl.h>
#include <nsutils/time.h>
diff --git a/content/mimesniff.c b/content/mimesniff.c
index e8ebf87..b244488 100644
--- a/content/mimesniff.c
+++ b/content/mimesniff.c
@@ -22,7 +22,8 @@
* Spec version: 2011-11-27
*/
-#include<string.h>
+#include <string.h>
+#include <strings.h>
#include "content/content_factory.h"
#include "content/llcache.h"
diff --git a/desktop/save_complete.c b/desktop/save_complete.c
index e5359e4..64c769f 100644
--- a/desktop/save_complete.c
+++ b/desktop/save_complete.c
@@ -26,6 +26,7 @@
#include <errno.h>
#include <stdio.h>
#include <string.h>
+#include <strings.h>
#include <sys/types.h>
#include <regex.h>
#include <dom/dom.h>
diff --git a/gtk/fetch.c b/gtk/fetch.c
index fbe6f95..817e9c9 100644
--- a/gtk/fetch.c
+++ b/gtk/fetch.c
@@ -23,6 +23,7 @@
#include <unistd.h>
#include <ctype.h>
#include <string.h>
+#include <strings.h>
#include "utils/hashtable.h"
#include "utils/log.h"
-----------------------------------------------------------------------
Summary of changes:
content/llcache.c | 1 +
content/mimesniff.c | 3 ++-
desktop/save_complete.c | 1 +
gtk/fetch.c | 1 +
4 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/content/llcache.c b/content/llcache.c
index e5d188e..bd30d17 100644
--- a/content/llcache.c
+++ b/content/llcache.c
@@ -34,6 +34,7 @@
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
+#include <strings.h>
#include <curl/curl.h>
#include <nsutils/time.h>
diff --git a/content/mimesniff.c b/content/mimesniff.c
index e8ebf87..b244488 100644
--- a/content/mimesniff.c
+++ b/content/mimesniff.c
@@ -22,7 +22,8 @@
* Spec version: 2011-11-27
*/
-#include<string.h>
+#include <string.h>
+#include <strings.h>
#include "content/content_factory.h"
#include "content/llcache.h"
diff --git a/desktop/save_complete.c b/desktop/save_complete.c
index e5359e4..64c769f 100644
--- a/desktop/save_complete.c
+++ b/desktop/save_complete.c
@@ -26,6 +26,7 @@
#include <errno.h>
#include <stdio.h>
#include <string.h>
+#include <strings.h>
#include <sys/types.h>
#include <regex.h>
#include <dom/dom.h>
diff --git a/gtk/fetch.c b/gtk/fetch.c
index fbe6f95..817e9c9 100644
--- a/gtk/fetch.c
+++ b/gtk/fetch.c
@@ -23,6 +23,7 @@
#include <unistd.h>
#include <ctype.h>
#include <string.h>
+#include <strings.h>
#include "utils/hashtable.h"
#include "utils/log.h"
--
NetSurf Browser