r130 - trunk

Petter Reinholdtsen pere at alioth.debian.org
Mon Sep 26 17:43:03 UTC 2011


Author: pere
Date: 2011-09-26 17:43:03 +0000 (Mon, 26 Sep 2011)
New Revision: 130

Modified:
   trunk/NEWS
   trunk/main.c
Log:
Fix typo in handling of long arguments.  Patch from Eric Raymond.

Modified: trunk/NEWS
===================================================================
--- trunk/NEWS	2011-09-26 17:41:20 UTC (rev 129)
+++ trunk/NEWS	2011-09-26 17:43:03 UTC (rev 130)
@@ -5,6 +5,7 @@
  * Updated autoconf/automake-related files to latest versions.
  * Document rpath size limitation better in the manual page.
    Patch from Eric Raymond.
+ * Fix typo in handling of long arguments.  Patch from Eric Raymond.
 
 New in 0.13 released 2004-09-19:
  * Change exit code handling.  Return an error if the operation fail.

Modified: trunk/main.c
===================================================================
--- trunk/main.c	2011-09-26 17:41:20 UTC (rev 129)
+++ trunk/main.c	2011-09-26 17:43:03 UTC (rev 130)
@@ -31,7 +31,8 @@
   {"keepgoing", 0, 0, 'k'},
   {"list",      0, 0, 'l'},
   {"replace",   1, 0, 'r'},
-  {"version",   0, 0, 'v'}
+  {"version",   0, 0, 'v'},
+  {0, 0, 0, 0}
 };
 
 #else /* not HAVE_GETOPT_LONG */




More information about the Chrpath-commits mailing list