diff options
author | 2003-03-28 18:55:30 +0000 | |
---|---|---|
committer | 2003-03-28 18:55:30 +0000 | |
commit | 5d47a13492ba6ef1010653cc4da26beace275c84 (patch) | |
tree | b848ad4c80a53c0ea6a3ee7ad6c5a1e0cb363d9f | |
parent | regen (diff) | |
download | wireguard-openbsd-5d47a13492ba6ef1010653cc4da26beace275c84.tar.xz wireguard-openbsd-5d47a13492ba6ef1010653cc4da26beace275c84.zip |
g/c unused variable
-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 |