summaryrefslogtreecommitdiff
path: root/neon
diff options
context:
space:
mode:
authorMichael Stahl <mst@openoffice.org>2012-07-27 17:31:26 +0200
committerMichael Stahl <mstahl@redhat.com>2012-07-27 17:50:23 +0200
commit91d3cbe0801c609ae39087129bd926b1c0d32300 (patch)
tree398ee34ff22e6a4e52737c6acc283d90bfea7b8d /neon
parentaab05a9444088c1ade1688ab8ab12f588962e8cd (diff)
neon: fix some warnings
Diffstat (limited to 'neon')
-rw-r--r--neon/makefile.mk2
-rw-r--r--neon/neon_ne_set_request_flag.patch11
2 files changed, 12 insertions, 1 deletions
diff --git a/neon/makefile.mk b/neon/makefile.mk
index c92a84936f46..bf5b30262ecb 100644
--- a/neon/makefile.mk
+++ b/neon/makefile.mk
@@ -50,7 +50,7 @@ NEON_NAME=neon-0.29.5
TARFILE_NAME=$(NEON_NAME)
TARFILE_MD5=ff369e69ef0f0143beb5626164e87ae2
-PATCH_FILES=neon.patch
+PATCH_FILES=neon.patch neon_ne_set_request_flag.patch
.IF "$(GUI)"=="WNT"
PATCH_FILES+=neon_exports_win.patch
diff --git a/neon/neon_ne_set_request_flag.patch b/neon/neon_ne_set_request_flag.patch
new file mode 100644
index 000000000000..162c3bd1865a
--- /dev/null
+++ b/neon/neon_ne_set_request_flag.patch
@@ -0,0 +1,11 @@
+--- misc/neon-0.29.5/src/ne_request.c 2010-09-28 13:57:26.000000000 +0200
++++ misc/build/neon-0.29.5/src/ne_request.c 2011-05-18 12:39:05.134445529 +0200
+@@ -529,7 +529,7 @@
+
+ void ne_set_request_flag(ne_request *req, ne_request_flag flag, int value)
+ {
+- if (flag < NE_SESSFLAG_LAST) {
++ if (flag < NE_REQFLAG_LAST) {
+ req->flags[flag] = value;
+ }
+ }