diff options
author | 2015-02-09 04:10:50 +0000 | |
---|---|---|
committer | 2015-02-09 04:10:50 +0000 | |
commit | d4c334808a1dad8ed94a917c6f465f9aa08285d6 (patch) | |
tree | 56a68f3bdc46f62107f3ae875e545fdb234854ba | |
parent | make the %b format args easier (for me) to read. (diff) | |
download | wireguard-openbsd-d4c334808a1dad8ed94a917c6f465f9aa08285d6.tar.xz wireguard-openbsd-d4c334808a1dad8ed94a917c6f465f9aa08285d6.zip |
remove the safeguard against porting to machines without 8 bit bytes.
allows removing sys/param.h include as well.
-rw-r--r-- | usr.bin/ftp/util.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/usr.bin/ftp/util.c b/usr.bin/ftp/util.c index fc26ec57ac3..a3533e3bcf2 100644 --- a/usr.bin/ftp/util.c +++ b/usr.bin/ftp/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.69 2015/01/30 04:45:45 tedu Exp $ */ +/* $OpenBSD: util.c,v 1.70 2015/02/09 04:10:50 tedu Exp $ */ /* $NetBSD: util.c,v 1.12 1997/08/18 10:20:27 lukem Exp $ */ /*- @@ -66,7 +66,6 @@ /* * FTP User Program -- Misc support routines */ -#include <sys/param.h> /* BSD */ #include <sys/ioctl.h> #include <sys/time.h> #include <arpa/ftp.h> @@ -169,11 +168,6 @@ setpeer(int argc, char *argv[]) if (autologin) (void)ftp_login(argv[1], NULL, NULL); -#if (defined(unix) || defined(BSD)) && NBBY == 8 -/* - * this ifdef is to keep someone form "porting" this to an incompatible - * system and not checking this out. This way they have to think about it. - */ overbose = verbose; #ifndef SMALL if (!debug) @@ -211,7 +205,6 @@ setpeer(int argc, char *argv[]) unix_server = 0; } verbose = overbose; -#endif /* unix || BSD */ } } |