summaryrefslogtreecommitdiff
path: root/usr.bin
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
parentd37687eab71de17e3d7ccd2a220e5016312b9c79 (diff)
for -DSMALL, do not include rcsid[]s
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ftp/cmds.c12
-rw-r--r--usr.bin/ftp/cmdtab.c12
-rw-r--r--usr.bin/ftp/domacro.c12
-rw-r--r--usr.bin/ftp/fetch.c8
-rw-r--r--usr.bin/ftp/ftp.c12
-rw-r--r--usr.bin/ftp/main.c12
-rw-r--r--usr.bin/ftp/ruserpass.c6
-rw-r--r--usr.bin/ftp/stringlist.c8
-rw-r--r--usr.bin/ftp/util.c8
9 files changed, 36 insertions, 54 deletions
diff --git a/usr.bin/ftp/cmds.c b/usr.bin/ftp/cmds.c
index b984db03c13..754e7ef015a 100644
--- a/usr.bin/ftp/cmds.c
+++ b/usr.bin/ftp/cmds.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmds.c,v 1.45 2003/06/03 02:56:08 millert Exp $ */
+/* $OpenBSD: cmds.c,v 1.46 2003/12/16 21:46:22 deraadt Exp $ */
/* $NetBSD: cmds.c,v 1.27 1997/08/18 10:20:15 lukem Exp $ */
/*
@@ -59,13 +59,9 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)cmds.c 8.6 (Berkeley) 10/9/94";
-#else
-static char rcsid[] = "$OpenBSD: cmds.c,v 1.45 2003/06/03 02:56:08 millert Exp $";
-#endif
-#endif /* not lint */
+#if !defined(lint) && !defined(SMALL)
+static char rcsid[] = "$OpenBSD: cmds.c,v 1.46 2003/12/16 21:46:22 deraadt Exp $";
+#endif /* not lint and not SMALL */
/*
* FTP User Program -- Command Routines.
diff --git a/usr.bin/ftp/cmdtab.c b/usr.bin/ftp/cmdtab.c
index 1edde2dc11c..8369306a3f1 100644
--- a/usr.bin/ftp/cmdtab.c
+++ b/usr.bin/ftp/cmdtab.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmdtab.c,v 1.16 2003/06/03 02:56:08 millert Exp $ */
+/* $OpenBSD: cmdtab.c,v 1.17 2003/12/16 21:46:22 deraadt Exp $ */
/* $NetBSD: cmdtab.c,v 1.17 1997/08/18 10:20:17 lukem Exp $ */
/*
@@ -30,13 +30,9 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)cmdtab.c 8.4 (Berkeley) 10/9/94";
-#else
-static char rcsid[] = "$OpenBSD: cmdtab.c,v 1.16 2003/06/03 02:56:08 millert Exp $";
-#endif
-#endif /* not lint */
+#if !defined(lint) && !defined(SMALL)
+static char rcsid[] = "$OpenBSD: cmdtab.c,v 1.17 2003/12/16 21:46:22 deraadt Exp $";
+#endif /* not lint and not SMALL */
#include <stdio.h>
#include "ftp_var.h"
diff --git a/usr.bin/ftp/domacro.c b/usr.bin/ftp/domacro.c
index f83c065868a..d622d4bfad0 100644
--- a/usr.bin/ftp/domacro.c
+++ b/usr.bin/ftp/domacro.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: domacro.c,v 1.9 2003/06/03 02:56:08 millert Exp $ */
+/* $OpenBSD: domacro.c,v 1.10 2003/12/16 21:46:22 deraadt Exp $ */
/* $NetBSD: domacro.c,v 1.10 1997/07/20 09:45:45 lukem Exp $ */
/*
@@ -30,13 +30,9 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)domacro.c 8.3 (Berkeley) 4/2/94";
-#else
-static char rcsid[] = "$OpenBSD: domacro.c,v 1.9 2003/06/03 02:56:08 millert Exp $";
-#endif
-#endif /* not lint */
+#if !defined(lint) && !defined(SMALL)
+static char rcsid[] = "$OpenBSD: domacro.c,v 1.10 2003/12/16 21:46:22 deraadt Exp $";
+#endif /* not lint and not SMALL */
#include <ctype.h>
#include <signal.h>
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
diff --git a/usr.bin/ftp/ftp.c b/usr.bin/ftp/ftp.c
index dc83b52637b..1bfda9d42cc 100644
--- a/usr.bin/ftp/ftp.c
+++ b/usr.bin/ftp/ftp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ftp.c,v 1.54 2003/08/11 21:23:58 millert Exp $ */
+/* $OpenBSD: ftp.c,v 1.55 2003/12/16 21:46:22 deraadt Exp $ */
/* $NetBSD: ftp.c,v 1.27 1997/08/18 10:20:23 lukem Exp $ */
/*
@@ -59,13 +59,9 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)ftp.c 8.6 (Berkeley) 10/27/94";
-#else
-static char rcsid[] = "$OpenBSD: ftp.c,v 1.54 2003/08/11 21:23:58 millert Exp $";
-#endif
-#endif /* not lint */
+#if !defined(lint) && !defined(SMALL)
+static char rcsid[] = "$OpenBSD: ftp.c,v 1.55 2003/12/16 21:46:22 deraadt Exp $";
+#endif /* not lint and not SMALL */
#include <sys/types.h>
#include <sys/stat.h>
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.
diff --git a/usr.bin/ftp/ruserpass.c b/usr.bin/ftp/ruserpass.c
index d22b0d689e1..e3f9a7bcfd1 100644
--- a/usr.bin/ftp/ruserpass.c
+++ b/usr.bin/ftp/ruserpass.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ruserpass.c,v 1.16 2003/06/03 02:56:08 millert Exp $ */
+/* $OpenBSD: ruserpass.c,v 1.17 2003/12/16 21:46:22 deraadt Exp $ */
/* $NetBSD: ruserpass.c,v 1.14 1997/07/20 09:46:01 lukem Exp $ */
/*
@@ -34,7 +34,9 @@
#if 0
static char sccsid[] = "@(#)ruserpass.c 8.4 (Berkeley) 4/27/95";
#else
-static char rcsid[] = "$OpenBSD: ruserpass.c,v 1.16 2003/06/03 02:56:08 millert Exp $";
+#ifndef SMALL
+static char rcsid[] = "$OpenBSD: ruserpass.c,v 1.17 2003/12/16 21:46:22 deraadt Exp $";
+#endif /* SMALL */
#endif
#endif /* not lint */
diff --git a/usr.bin/ftp/stringlist.c b/usr.bin/ftp/stringlist.c
index 63320e7590a..46bd0c55bd8 100644
--- a/usr.bin/ftp/stringlist.c
+++ b/usr.bin/ftp/stringlist.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: stringlist.c,v 1.3 2002/07/12 00:25:30 deraadt Exp $ */
+/* $OpenBSD: stringlist.c,v 1.4 2003/12/16 21:46:22 deraadt Exp $ */
/* $NetBSD: stringlist.c,v 1.2 1997/01/17 07:26:20 lukem Exp $ */
/*
@@ -32,9 +32,9 @@
* SUCH DAMAGE.
*/
-#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: stringlist.c,v 1.3 2002/07/12 00:25:30 deraadt Exp $";
-#endif /* LIBC_SCCS and not lint */
+#if defined(LIBC_SCCS) && !defined(lint) && !defined(SMALL)
+static char *rcsid = "$OpenBSD: stringlist.c,v 1.4 2003/12/16 21:46:22 deraadt Exp $";
+#endif /* LIBC_SCCS and not lint and not SMALL */
#include <stdio.h>
#include <string.h>
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