summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net/sipsak/distinfo4
-rw-r--r--net/sipsak/patches/patch-header__f.c13
-rw-r--r--net/sipsak/patches/patch-header__f.h11
3 files changed, 27 insertions, 1 deletions
diff --git a/net/sipsak/distinfo b/net/sipsak/distinfo
index b682d7b45c7..c13594f6ca8 100644
--- a/net/sipsak/distinfo
+++ b/net/sipsak/distinfo
@@ -1,6 +1,8 @@
-$NetBSD: distinfo,v 1.2 2006/11/10 21:32:35 schwarz Exp $
+$NetBSD: distinfo,v 1.3 2013/01/11 00:01:33 joerg Exp $
SHA1 (sipsak-0.9.6-1.tar.gz) = 6d2fd2c90ea04be749e48927b3e7fc08c52166b6
RMD160 (sipsak-0.9.6-1.tar.gz) = d5949e4309bda732b5aee462a4488bb9d850fe5a
Size (sipsak-0.9.6-1.tar.gz) = 158776 bytes
SHA1 (patch-aa) = e4df10b6d074acd1f3d925f48849348516533814
+SHA1 (patch-header__f.c) = 5f1574ff7a595631b26cfdf6dcb3e7aae81338f7
+SHA1 (patch-header__f.h) = 728f670573b42d51744db9be6701f782653f0a93
diff --git a/net/sipsak/patches/patch-header__f.c b/net/sipsak/patches/patch-header__f.c
new file mode 100644
index 00000000000..835146506ed
--- /dev/null
+++ b/net/sipsak/patches/patch-header__f.c
@@ -0,0 +1,13 @@
+$NetBSD: patch-header__f.c,v 1.1 2013/01/11 00:01:33 joerg Exp $
+
+--- header_f.c.orig 2013-01-10 23:04:22.000000000 +0000
++++ header_f.c
+@@ -604,7 +604,7 @@ void print_message_line(char *message)
+ }
+
+ /* return pointer to the beginning of the message body */
+-inline char* get_body(char *mes) {
++char* get_body(char *mes) {
+ char *cr;
+
+ if ((cr = strstr(mes, "\r\n\r\n")) != NULL) {
diff --git a/net/sipsak/patches/patch-header__f.h b/net/sipsak/patches/patch-header__f.h
new file mode 100644
index 00000000000..20d46180c9e
--- /dev/null
+++ b/net/sipsak/patches/patch-header__f.h
@@ -0,0 +1,11 @@
+$NetBSD: patch-header__f.h,v 1.1 2013/01/11 00:01:33 joerg Exp $
+
+--- header_f.h.orig 2013-01-10 23:04:10.000000000 +0000
++++ header_f.h
+@@ -61,5 +61,5 @@ void new_transaction(char *message);
+
+ void print_message_line(char *message);
+
+-inline char* get_body(char *mes);
++char* get_body(char *mes);
+ #endif