=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mail/popen.c,v retrieving revision 1.23 retrieving revision 1.23.8.1 diff -c -r1.23 -r1.23.8.1 *** src/usr.bin/mail/popen.c 1998/09/27 21:16:42 1.23 --- src/usr.bin/mail/popen.c 2000/10/06 21:16:14 1.23.8.1 *************** *** 1,4 **** ! /* $OpenBSD: popen.c,v 1.23 1998/09/27 21:16:42 millert Exp $ */ /* $NetBSD: popen.c,v 1.6 1997/05/13 06:48:42 mikel Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: popen.c,v 1.23.8.1 2000/10/06 21:16:14 jason Exp $ */ /* $NetBSD: popen.c,v 1.6 1997/05/13 06:48:42 mikel Exp $ */ /* *************** *** 38,44 **** #if 0 static char sccsid[] = "@(#)popen.c 8.1 (Berkeley) 6/6/93"; #else ! static char rcsid[] = "$OpenBSD: popen.c,v 1.23 1998/09/27 21:16:42 millert Exp $"; #endif #endif /* not lint */ --- 38,44 ---- #if 0 static char sccsid[] = "@(#)popen.c 8.1 (Berkeley) 6/6/93"; #else ! static char rcsid[] = "$OpenBSD: popen.c,v 1.23.8.1 2000/10/06 21:16:14 jason Exp $"; #endif #endif /* not lint */ *************** *** 263,269 **** argv[i] = NULL; prepare_child(nset, infd, outfd); execvp(argv[0], argv); ! warn(argv[0]); _exit(1); } return(pid); --- 263,269 ---- argv[i] = NULL; prepare_child(nset, infd, outfd); execvp(argv[0], argv); ! warn("%s", argv[0]); _exit(1); } return(pid);