Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > 07e56ec36f5b6db53acae40086fcf8ad > files > 49

rpm-4.4.2.3-20mnb2.src.rpm

--- rpm-4.4.6/popt/popt.c.pix	2006-02-12 21:57:20.000000000 +0100
+++ rpm-4.4.6/popt/popt.c	2006-11-22 18:58:31.000000000 +0100
@@ -463,7 +463,9 @@
 
     rc = execvp(argv[0], (char *const *)argv);
 
-    return POPT_ERROR_ERRNO;
+    /* FIXME: hardcoding error message and exit status */
+    fprintf(stderr, _("Could not exec %s: %s\n"), argv[0], strerror(errno));
+    exit(EXIT_FAILURE);
 }
 /*@=bounds =boundswrite @*/