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/util.c | |
parent | d37687eab71de17e3d7ccd2a220e5016312b9c79 (diff) |
for -DSMALL, do not include rcsid[]s
Diffstat (limited to 'usr.bin/ftp/util.c')
-rw-r--r-- | usr.bin/ftp/util.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ftp/util.c b/usr.bin/ftp/util.c index 2a1eaf33990..3a4d182816d 100644 --- a/usr.bin/ftp/util.c +++ b/usr.bin/ftp/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.36 2003/10/31 08:47:31 otto Exp $ */ +/* $OpenBSD: util.c,v 1.37 2003/12/16 21:46:22 deraadt Exp $ */ /* $NetBSD: util.c,v 1.12 1997/08/18 10:20:27 lukem Exp $ */ /*- @@ -70,9 +70,9 @@ * SUCH DAMAGE. */ -#ifndef lint -static char rcsid[] = "$OpenBSD: util.c,v 1.36 2003/10/31 08:47:31 otto Exp $"; -#endif /* not lint */ +#if !defined(lint) && !defined(SMALL) +static char rcsid[] = "$OpenBSD: util.c,v 1.37 2003/12/16 21:46:22 deraadt Exp $"; +#endif /* not lint and not SMALL */ /* * FTP User Program -- Misc support routines |