diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-19 18:00:59 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-19 18:00:59 +0000 |
commit | 88197279a1bf1ba3a2dd28d37265a4cbb7465cf3 (patch) | |
tree | f1f8da3fd22b7f46677c7e4e881c663ff46aba90 /usr.sbin/pppd | |
parent | 9a0f1767dd16dfba460a43d593808233e856a4aa (diff) |
never before have i deleted an unused global variable out of a file with
such prejudice (long story)
Diffstat (limited to 'usr.sbin/pppd')
-rw-r--r-- | usr.sbin/pppd/chat/chat.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/pppd/chat/chat.c b/usr.sbin/pppd/chat/chat.c index 1bdeac1c25a..383faae984a 100644 --- a/usr.sbin/pppd/chat/chat.c +++ b/usr.sbin/pppd/chat/chat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: chat.c,v 1.3 1997/09/01 21:48:28 millert Exp $ */ +/* $OpenBSD: chat.c,v 1.4 1997/09/19 18:00:58 deraadt Exp $ */ /* * Chat -- a program for automatic session establishment (i.e. dial @@ -75,7 +75,7 @@ #if 0 static char rcsid[] = "Id: chat.c,v 1.15 1997/07/14 03:50:22 paulus Exp $"; #else -static char rcsid[] = "$OpenBSD: chat.c,v 1.3 1997/09/01 21:48:28 millert Exp $"; +static char rcsid[] = "$OpenBSD: chat.c,v 1.4 1997/09/19 18:00:58 deraadt Exp $"; #endif #endif @@ -476,7 +476,6 @@ Usage: %s [-e] [-v] [-t timeout] [-r report-file] {-f chat-file | chat-script}\n } char line[256]; -char *p; void logf (str) const char *str; |