whitespace & copyright fixes

This commit is contained in:
lukem 1999-03-08 03:09:08 +00:00
parent 34d3f1c35f
commit babd00aa2c
4 changed files with 16 additions and 16 deletions

View File

@ -1,7 +1,7 @@
/* $NetBSD: cmds.c,v 1.46 1999/01/24 02:39:29 lukem Exp $ */
/* $NetBSD: cmds.c,v 1.47 1999/03/08 03:09:08 lukem Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
@ -75,7 +75,7 @@
#if 0
static char sccsid[] = "@(#)cmds.c 8.6 (Berkeley) 10/9/94";
#else
__RCSID("$NetBSD: cmds.c,v 1.46 1999/01/24 02:39:29 lukem Exp $");
__RCSID("$NetBSD: cmds.c,v 1.47 1999/03/08 03:09:08 lukem Exp $");
#endif
#endif /* not lint */
@ -932,7 +932,7 @@ setgate(argc, argv)
port = strtol(argv[2], &ep, 10);
if (port < 0 || port > MAX_IN_PORT_T ||
*ep != '\0') {
fprintf(ttyout,
fprintf(ttyout,
"%s: bad gateport value.\n",
argv[2]);
code = -1;
@ -2094,7 +2094,7 @@ restart(argc, argv)
#endif
}
/*
/*
* Show remote system type
*/
void

View File

@ -1,4 +1,4 @@
/* $NetBSD: cmdtab.c,v 1.19 1998/07/26 12:58:17 lukem Exp $ */
/* $NetBSD: cmdtab.c,v 1.20 1999/03/08 03:09:08 lukem Exp $ */
/*
* Copyright (c) 1985, 1989, 1993, 1994
@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)cmdtab.c 8.4 (Berkeley) 10/9/94";
#else
__RCSID("$NetBSD: cmdtab.c,v 1.19 1998/07/26 12:58:17 lukem Exp $");
__RCSID("$NetBSD: cmdtab.c,v 1.20 1999/03/08 03:09:08 lukem Exp $");
#endif
#endif /* not lint */
@ -133,7 +133,7 @@ char verbosehelp[] = "toggle verbose mode";
#define CMPL(x)
#define CMPL0
#else /* !SMALL */
#define CMPL(x) __STRING(x),
#define CMPL(x) __STRING(x),
#define CMPL0 "",
#endif /* !SMALL */

View File

@ -1,7 +1,7 @@
/* $NetBSD: complete.c,v 1.20 1999/02/18 23:08:41 lukem Exp $ */
/* $NetBSD: complete.c,v 1.21 1999/03/08 03:09:08 lukem Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
* Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
@ -40,7 +40,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: complete.c,v 1.20 1999/02/18 23:08:41 lukem Exp $");
__RCSID("$NetBSD: complete.c,v 1.21 1999/03/08 03:09:08 lukem Exp $");
#endif /* not lint */
/*
@ -122,7 +122,7 @@ complete_ambiguous(word, list, words)
lastmatch + wordlen, matchlen - wordlen);
if (el_insertstr(el, insertstr) == -1)
return (CC_ERROR);
else
else
return (CC_REFRESH_BEEP);
}
}
@ -218,7 +218,7 @@ complete_local(word, list)
for (dp = readdir(dd); dp != NULL; dp = readdir(dd)) {
if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
continue;
#ifndef __SVR4
if (len > dp->d_namlen)
continue;

View File

@ -1,4 +1,4 @@
/* $NetBSD: util.c,v 1.45 1999/02/12 12:11:18 lukem Exp $ */
/* $NetBSD: util.c,v 1.46 1999/03/08 03:09:08 lukem Exp $ */
/*-
* Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
@ -75,7 +75,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: util.c,v 1.45 1999/02/12 12:11:18 lukem Exp $");
__RCSID("$NetBSD: util.c,v 1.46 1999/03/08 03:09:08 lukem Exp $");
#endif /* not lint */
/*
@ -822,7 +822,7 @@ progressmeter(flag)
if (barlength > 0) {
i = barlength * ratio / 100;
len += snprintf(buf + len, sizeof(buf) - len,
"|%.*s%*s|", i,
"|%.*s%*s|", i,
"*****************************************************************************"
"*****************************************************************************",
barlength - i, "");