diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-12-16 21:46:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-12-16 21:46:23 +0000 |
commit | 60ef245f3fba4099b11818fdb599c0b374604b38 (patch) | |
tree | d43404f236843624dafc65dc37d7cddc8c469a5d /usr.bin/ftp/fetch.c | |
parent | d37687eab71de17e3d7ccd2a220e5016312b9c79 (diff) |
for -DSMALL, do not include rcsid[]s
Diffstat (limited to 'usr.bin/ftp/fetch.c')
-rw-r--r-- | usr.bin/ftp/fetch.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ftp/fetch.c b/usr.bin/ftp/fetch.c index 0797f47c8c6..90e48db5e7e 100644 --- a/usr.bin/ftp/fetch.c +++ b/usr.bin/ftp/fetch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fetch.c,v 1.47 2003/08/15 23:13:06 deraadt Exp $ */ +/* $OpenBSD: fetch.c,v 1.48 2003/12/16 21:46:22 deraadt Exp $ */ /* $NetBSD: fetch.c,v 1.14 1997/08/18 10:20:20 lukem Exp $ */ /*- @@ -37,9 +37,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef lint -static char rcsid[] = "$OpenBSD: fetch.c,v 1.47 2003/08/15 23:13:06 deraadt Exp $"; -#endif /* not lint */ +#if !defined(lint) && !defined(SMALL) +static char rcsid[] = "$OpenBSD: fetch.c,v 1.48 2003/12/16 21:46:22 deraadt Exp $"; +#endif /* not lint and not SMALL */ /* * FTP User Program -- Command line file retrieval |