From: Wayne Davison Date: Tue, 21 Nov 2006 08:37:28 +0000 (+0000) Subject: Don't set an "rc" var that we aren't going to use. X-Git-Tag: v3.0.0pre1~555 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65e83e097c8635856816a07bab5e330a6615dfc1;p=thirdparty%2Frsync.git Don't set an "rc" var that we aren't going to use. --- diff --git a/popt/popt.c b/popt/popt.c index 00a60270..756ddfee 100644 --- a/popt/popt.c +++ b/popt/popt.c @@ -471,7 +471,7 @@ if (_popt_debug) } #endif - rc = execvp(argv[0], (char *const *)argv); + execvp(argv[0], (char *const *)argv); return POPT_ERROR_ERRNO; }