X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/23aff0e2dcbd1df5ca0de3c2b2ab34ad0ec3d31b..59de9d3da5ccfd01e8c17a2844448653bd150036:/package/wireless-tools/patches/debian-2.patch

diff --git a/package/wireless-tools/patches/debian-2.patch b/package/wireless-tools/patches/debian-2.patch
index 158e63439..ba8755b70 100644
--- a/package/wireless-tools/patches/debian-2.patch
+++ b/package/wireless-tools/patches/debian-2.patch
@@ -33,57 +33,3 @@
  DEPFLAGS=-MMD
  XCFLAGS=$(CFLAGS) $(DEPFLAGS) $(WARN) $(HEADERS) $(WELIB_FLAG)
  PICFLAG=-fPIC
---- wireless-tools-27.orig/iwlist.c
-+++ wireless-tools-27/iwlist.c
-@@ -870,7 +870,7 @@
-   struct iw_range	range;
-   int			has_range;
-   struct timeval	tv;				/* Select timeout */
--  int			timeout = 5000000;		/* 5s */
-+  int			timeout = 15000000;		/* 15s */
- 
-   /* Avoid "Unused parameter" warning */
-   args = args; count = count;
---- wireless-tools-27.orig/iwconfig.c
-+++ wireless-tools-27/iwconfig.c
-@@ -835,10 +835,10 @@
- 	      }
- 	    else
- 	      {
--		/* '-' allow to escape the ESSID string, allowing
-+		/* '-' or '--' allow to escape the ESSID string, allowing
- 		 * to set it to the string "any" or "off".
- 		 * This is a big ugly, but it will do for now */
--		if(!strcmp(args[i], "-"))
-+		if(!strcmp(args[i], "-") || !strcmp(args[i], "--"))
- 		  {
- 		    i++;
- 		    if(i >= count)
-@@ -1377,12 +1377,21 @@
-       if (!strcmp(argv[1], "-v") || !strcmp(argv[1], "--version"))
- 	goterr = iw_print_version_info("iwconfig");
-       else
--	/* The device name must be the first argument */
--	if(argc == 2)
--	  print_info(skfd, argv[1], NULL, 0);
--	else
--	  /* The other args on the line specify options to be set... */
--	  goterr = set_info(skfd, argv + 2, argc - 2, argv[1]);
-+      {
-+        /* '--' escape device name */
-+        if((argc > 2) && !strcmp(argv[1], "--"))
-+          {
-+            argv++;
-+            argc--;
-+          }
-+
-+        /* The device name must be the first argument */
-+        if(argc == 2)
-+          print_info(skfd, argv[1], NULL, 0);
-+        else
-+          /* The other args on the line specify options to be set... */
-+          goterr = set_info(skfd, argv + 2, argc - 2, argv[1]);
-+      }
- 
-   /* Close the socket. */
-   iw_sockets_close(skfd);