blob: f1798020dcd4020fd81e010f0fb55815c6ccd249 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ai,v 1.1 2007/10/06 00:00:02 joerg Exp $
--- plugin/udp/udp.c.orig 2007-10-05 23:03:41.000000000 +0000
+++ plugin/udp/udp.c
@@ -633,7 +633,7 @@ __osip_message_fix_last_via_header (osip
if (MSG_IS_RESPONSE (request))
return 0; /* Don't fix Via header */
- via = osip_list_get (request->vias, 0);
+ via = osip_list_get (&request->vias, 0);
if (via == NULL || via->host == NULL)
/* Hey, we could build it? */
return -1;
|