Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 25384
Collapse All | Expand All

(-)openafs-1.2.9a/src/pinstall/install.c (-2 / +2 lines)
Lines 181-187 Link Here
181
	    case 0:			/* child	*/
181
	    case 0:			/* child	*/
182
		copy[1] = iname;
182
		copy[1] = iname;
183
		copy[2] = oname;
183
		copy[2] = oname;
184
		execve("/bin/cp", copy, (char **)0);
184
		execv("/bin/cp", copy);
185
		perror("/bin/cp");
185
		perror("/bin/cp");
186
		exit(1);
186
		exit(1);
187
187
Lines 227-233 Link Here
227
#else
227
#else
228
#define	STRIP_BIN	"/bin/strip"
228
#define	STRIP_BIN	"/bin/strip"
229
#endif
229
#endif
230
		execve(STRIP_BIN, strip, (char **)0);
230
		execv(STRIP_BIN, strip);
231
		perror(STRIP_BIN);
231
		perror(STRIP_BIN);
232
		exit(1);
232
		exit(1);
233
233

Return to bug 25384