Package: release.debian.org
Severity: normal
User: release.debian....@packages.debian.org
Usertags: pu

Hi,

please review the following one-liner against netcfg. That's another
long standing bug and it's easy to fix. :)

| netcfg (1.108+deb7u2) wheezy; urgency=low
| 
|   * Fix support for entering an ESSID manually, it was previously
|     getting ignored (Closes: #757478). Thanks to James Cowgill for the
|     report and the patch!
| 
|  -- Cyril Brulebois <k...@debian.org>  Sun, 28 Sep 2014 17:11:31 +0200

OK to upload?

Mraw,
KiBi.
diff -Nru netcfg-1.108+deb7u1/debian/changelog netcfg-1.108+deb7u2/debian/changelog
--- netcfg-1.108+deb7u1/debian/changelog	2013-10-08 01:04:57.000000000 +0200
+++ netcfg-1.108+deb7u2/debian/changelog	2014-09-28 17:11:32.000000000 +0200
@@ -1,3 +1,11 @@
+netcfg (1.108+deb7u2) wheezy; urgency=low
+
+  * Fix support for entering an ESSID manually, it was previously
+    getting ignored (Closes: #757478). Thanks to James Cowgill for the
+    report and the patch!
+
+ -- Cyril Brulebois <k...@debian.org>  Sun, 28 Sep 2014 17:11:31 +0200
+
 netcfg (1.108+deb7u1) wheezy; urgency=low
 
   [ Philipp Kern ]
diff -Nru netcfg-1.108+deb7u1/wireless.c netcfg-1.108+deb7u2/wireless.c
--- netcfg-1.108+deb7u1/wireless.c	2012-09-22 19:38:28.000000000 +0200
+++ netcfg-1.108+deb7u2/wireless.c	2014-09-28 17:11:21.000000000 +0200
@@ -86,7 +86,7 @@
         goto get_essid;
     }
 
-    strdup(client->value);
+    interface->essid = strdup(client->value);
 
     memset(wconf.essid, 0, IW_ESSID_MAX_SIZE + 1);
     snprintf(wconf.essid, IW_ESSID_MAX_SIZE + 1, "%s", interface->essid);

Reply via email to