summaryrefslogtreecommitdiff
path: root/net/linphone/files/patch-osipua::src::osipua.c
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-10-23 03:29:23 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-10-23 03:29:23 +0000
commite4076a018eb0ba76180365cd455470088ac8048e (patch)
treed218eea4c7d79f28d68f561c12ef4a550d729c74 /net/linphone/files/patch-osipua::src::osipua.c
parentUnbreak for gcc-3.3 where #include <varargs.h> is a fatal error. varargs (diff)
Upgrade to version 0.12.0. This is a follow up of the upgrade and
backout of the commit last tuesday. I have disabled IPv6 support since it causes linphone not to work properly. Informed author about it.
Notes
Notes: svn path=/head/; revision=91925
Diffstat (limited to 'net/linphone/files/patch-osipua::src::osipua.c')
-rw-r--r--net/linphone/files/patch-osipua::src::osipua.c26
1 files changed, 16 insertions, 10 deletions
diff --git a/net/linphone/files/patch-osipua::src::osipua.c b/net/linphone/files/patch-osipua::src::osipua.c
index b7111db391ab..8d9e0b969023 100644
--- a/net/linphone/files/patch-osipua::src::osipua.c
+++ b/net/linphone/files/patch-osipua::src::osipua.c
@@ -1,15 +1,21 @@
-
-$FreeBSD$
-
---- osipua/src/osipua.c 2003/06/13 12:25:43 1.1
-+++ osipua/src/osipua.c 2003/06/13 12:58:48
-@@ -595,8 +595,7 @@
- if (ipaddr != NULL)
+--- osipua/src/osipua.c.orig Sat Aug 16 02:30:51 2003
++++ osipua/src/osipua.c Thu Oct 23 12:56:06 2003
+@@ -591,8 +591,7 @@
+ if (ipaddr != NULL)
{
- osip_trace(OSIP_INFO1,("osip_ua_find 1: %s <> %s \n",ua->ua_ipaddr,ipaddr));
+ osip_trace(OSIP_INFO1,("osip_ua_find 1: %s <> %s \n",ua->ua_ipaddr,ipaddr));
- if ((strcasecmp(ua->ua_ipaddr,ipaddr)==0) || (strcasecmp("127.0.0.1",ipaddr)==0) ||
-- IN6_IS_ADDR_LOOPBACK(res->ai_addr))
+- IN6_IS_ADDR_LOOPBACK(res->ai_addr))
+ if ((strcasecmp(ua->ua_ipaddr,ipaddr)==0) || (strcasecmp("127.0.0.1",ipaddr)==0))
{
- ret_ua=ua; /* ip addresses match */
+ ret_ua=ua; /* ip addresses match */
}
+@@ -600,7 +599,7 @@
+ else ret_ua=ua; /* we accept uncheckable host names... */
+ ret_ua=ua;
+ #else
+- if (ip4addr!=NULL)
++ if (ipaddr!=NULL)
+ {
+ osip_trace(OSIP_INFO1,("osip_ua_find 1: %s <> %s \n",ua->ua_ip4addr,ipaddr));
+ if ((strcasecmp(ua->ua_ip4addr,ipaddr)==0) || (strcasecmp("127.0.0.1",ipaddr)==0))