diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-28 18:55:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-28 18:55:31 +0000 |
commit | 99546c92b98c9c61cf183b1849cef59f8e007e0c (patch) | |
tree | 0c0685522efc3dc52a7933e7b947710053886e27 /usr.bin/sudo | |
parent | 0d55f5a9b2162604db93bae7ddb812cf79b4d253 (diff) |
g/c unused variable
Diffstat (limited to 'usr.bin/sudo')
-rw-r--r-- | usr.bin/sudo/logging.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sudo/logging.c b/usr.bin/sudo/logging.c index 085a178c634..6bad51c48d0 100644 --- a/usr.bin/sudo/logging.c +++ b/usr.bin/sudo/logging.c @@ -65,7 +65,7 @@ #include "sudo.h" #ifndef lint -static const char rcsid[] = "$Sudo: logging.c,v 1.158 2003/03/20 02:04:32 millert Exp $"; +static const char rcsid[] = "$Sudo: logging.c,v 1.159 2003/03/24 21:09:27 millert Exp $"; #endif /* lint */ static void do_syslog __P((int, char *)); @@ -438,7 +438,7 @@ send_mail(line) { FILE *mail; char *p; - int pfd[2], status; + int pfd[2]; pid_t pid; sigset_t set, oset; #ifndef NO_ROOT_MAILER |