summaryrefslogtreecommitdiff
path: root/usr.bin/ftp/main.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-12-16 21:46:23 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-12-16 21:46:23 +0000
commit60ef245f3fba4099b11818fdb599c0b374604b38 (patch)
treed43404f236843624dafc65dc37d7cddc8c469a5d /usr.bin/ftp/main.c
parentd37687eab71de17e3d7ccd2a220e5016312b9c79 (diff)
for -DSMALL, do not include rcsid[]s
Diffstat (limited to 'usr.bin/ftp/main.c')
-rw-r--r--usr.bin/ftp/main.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/usr.bin/ftp/main.c b/usr.bin/ftp/main.c
index 8c468957045..45f864270c1 100644
--- a/usr.bin/ftp/main.c
+++ b/usr.bin/ftp/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.56 2003/11/20 12:43:55 jmc Exp $ */
+/* $OpenBSD: main.c,v 1.57 2003/12/16 21:46:22 deraadt Exp $ */
/* $NetBSD: main.c,v 1.24 1997/08/18 10:20:26 lukem Exp $ */
/*
@@ -65,13 +65,9 @@ static char copyright[] =
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 10/9/94";
-#else
-static char rcsid[] = "$OpenBSD: main.c,v 1.56 2003/11/20 12:43:55 jmc Exp $";
-#endif
-#endif /* not lint */
+#if !defined(lint) && !defined(SMALL)
+static char rcsid[] = "$OpenBSD: main.c,v 1.57 2003/12/16 21:46:22 deraadt Exp $";
+#endif /* not lint and not SMALL */
/*
* FTP User Program -- Command Interface.