From 07e4efad3d9a0aae5640a271df65b6e19e22229f Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Fri, 26 May 2000 08:29:11 +0000 Subject: [PATCH] Remove an unused variable --- usr.sbin/ppp/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/ppp/exec.c b/usr.sbin/ppp/exec.c index e3a7ee536580..033729b83642 100644 --- a/usr.sbin/ppp/exec.c +++ b/usr.sbin/ppp/exec.c @@ -109,7 +109,7 @@ exec_Create(struct physical *p) log_Printf(LogPHASE, "Unable to create pipe for line exec: %s\n", strerror(errno)); else { - static int child_status, child_pid; /* These variables are abused */ + static int child_status; /* This variable is abused ! */ int stat, argc, i, ret, wret, pidpipe[2]; pid_t pid, realpid; char *argv[MAXARGS];