~ubuntu-branches/ubuntu/vivid/vino/vivid-proposed

« back to all changes in this revision

Viewing changes to debian/patches/05_use-system-miniupnpc.patch

  • Committer: Package Import Robot
  • Author(s): Gianfranco Costamagna
  • Date: 2014-10-29 16:45:42 UTC
  • Revision ID: package-import@ubuntu.com-20141029164542-gpdoa9463r3go335
Tags: 3.8.1-0ubuntu3
* rebuild against new libminiupnpc10
  - 05_use-system-miniupnpc.patch add missing NULL parameter, for API change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
                             ip);
135
135
   if (ip[0])
136
136
     if (strcmp (ip, "0.0.0.0") == 0)
137
 
@@ -238,11 +239,14 @@
 
137
@@ -238,11 +239,15 @@
138
138
       ext_port = g_strdup_printf ("%d", local_port);
139
139
       dprintf (UPNP, "UPnP: Trying to forward port %d...: ", local_port);
140
140
       UPNP_GetSpecificPortMappingEntry (upnp->priv->urls->controlURL,
147
147
+                                       int_port_tmp,
148
148
+                                       NULL,
149
149
+                                       NULL,
 
150
+                                       NULL,
150
151
+                                       NULL);
151
152
       if ( (strcmp (int_client_tmp, upnp->priv->lanaddr) == 0) && (strcmp (int_port_tmp, ext_port) == 0) )
152
153
        {