Displaying 2 results from an estimated 2 matches for "popt_error_noarg".
2004 May 02
0
rsync 2.6.2: clean up compilation warnings
...2.6.2-old/popt/popt.c 2004-01-27 10:27:05.000000000 -0600
+++ rsync-2.6.2/popt/popt.c 2004-05-02 13:22:53.000000000 -0500
@@ -1128,7 +1128,7 @@
/*@=nullderef@*/
}
-const char *const poptStrerror(const int error)
+const char * poptStrerror(const int error)
{
switch (error) {
case POPT_ERROR_NOARG:
diff -uwr rsync-2.6.2-old/popt/popt.h rsync-2.6.2/popt/popt.h
--- rsync-2.6.2-old/popt/popt.h 2004-01-27 10:27:05.000000000 -0600
+++ rsync-2.6.2/popt/popt.h 2004-05-02 13:23:01.000000000 -0500
@@ -373,7 +373,7 @@
* @return error string
*/
/*@-redecl@*/
-/*@observer@*/ const char *const popt...
2002 Jan 07
2
rsync-2.5.1 / popt patches
...11,7 @@
#define POPT_ERROR_BADQUOTE -15 /* only from
poptParseArgString() */
#define POPT_ERROR_ERRNO -16 /* only from
poptParseArgString() */
-const char *const poptStrerror(const int error) {
+const char * poptStrerror(const int error) {
switch (error) {
case POPT_ERROR_NOARG:
return POPT_("missing argument");