diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-02-01 03:24:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-02-01 03:24:15 +0000 |
commit | 376a7976c0a22002c6750673c39178e703bed58b (patch) | |
tree | 3b4a8322b9b5e1e7e175d003e4ecf149fba0ce24 /libexec/tftpd | |
parent | 28d59da957500734c9a5139d0d9bd7eea82eb36d (diff) |
no need to extern int errno if errno.h is included
Diffstat (limited to 'libexec/tftpd')
-rw-r--r-- | libexec/tftpd/tftpd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libexec/tftpd/tftpd.c b/libexec/tftpd/tftpd.c index fc6df193cd0..4e5916bff28 100644 --- a/libexec/tftpd/tftpd.c +++ b/libexec/tftpd/tftpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tftpd.c,v 1.13 1999/06/23 17:01:36 deraadt Exp $ */ +/* $OpenBSD: tftpd.c,v 1.14 2000/02/01 03:23:22 deraadt Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. @@ -41,7 +41,7 @@ char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)tftpd.c 5.13 (Berkeley) 2/26/91";*/ -static char rcsid[] = "$OpenBSD: tftpd.c,v 1.13 1999/06/23 17:01:36 deraadt Exp $: tftpd.c,v 1.6 1997/02/16 23:49:21 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: tftpd.c,v 1.14 2000/02/01 03:23:22 deraadt Exp $: tftpd.c,v 1.6 1997/02/16 23:49:21 deraadt Exp $"; #endif /* not lint */ /* @@ -72,7 +72,6 @@ static char rcsid[] = "$OpenBSD: tftpd.c,v 1.13 1999/06/23 17:01:36 deraadt Exp #define TIMEOUT 5 -extern int errno; extern char *__progname; struct sockaddr_in s_in = { AF_INET }; int peer; |