[memcached] plindner, r482: Patch from Eli Bingham <eli@pandora.com>...

commits at code.sixapart.com commits at code.sixapart.com
Sat Mar 31 22:17:10 UTC 2007


Patch from Eli Bingham <eli at pandora.com> to re-enable the -n switch to memcached.



U   trunk/server/ChangeLog
U   trunk/server/memcached.c


Modified: trunk/server/ChangeLog
===================================================================
--- trunk/server/ChangeLog	2007-03-30 09:10:06 UTC (rev 481)
+++ trunk/server/ChangeLog	2007-03-31 22:17:09 UTC (rev 482)
@@ -1,3 +1,8 @@
+2007-03-31  Paul Lindner  <lindner at inuus.com>
+
+	* Add patch from Eli Bingham <eli at pandora.com> to 
+	  re-enable the -n switch to memcached.
+
 2007-03-20  Paul Lindner  <lindner at inuus.com>
 	* Add patch to collect eviction statistics from
           Jean-Francois BUSTARRET <jfbustarret at wat.tv>.

Modified: trunk/server/memcached.c
===================================================================
--- trunk/server/memcached.c	2007-03-30 09:10:06 UTC (rev 481)
+++ trunk/server/memcached.c	2007-03-31 22:17:09 UTC (rev 482)
@@ -2318,7 +2318,7 @@
     setbuf(stderr, NULL);
 
     /* process arguments */
-    while ((c = getopt(argc, argv, "bp:s:U:m:Mc:khirvdl:u:P:f:s:")) != -1) {
+    while ((c = getopt(argc, argv, "bp:s:U:m:Mc:khirvdl:u:P:f:s:n:")) != -1) {
         switch (c) {
         case 'U':
             settings.udpport = atoi(optarg);




More information about the memcached-commits mailing list