summaryrefslogtreecommitdiff
path: root/sbin/swapon
diff options
context:
space:
mode:
authordima <dima@cvs.openbsd.org>1997-02-06 09:50:57 +0000
committerdima <dima@cvs.openbsd.org>1997-02-06 09:50:57 +0000
commit1ce8fe88d699d1ded2301dff378451b876081275 (patch)
treeac78638063d7bff99186849d98999859a6ec1199 /sbin/swapon
parent25a43b7f0dc89e4ed75aea93ce88959b3cf96850 (diff)
Cosmetic change: "device not configured" -> "Device not configured"
so it would match it's prorotype entry in errlist. The same for "device already in use"
Diffstat (limited to 'sbin/swapon')
-rw-r--r--sbin/swapon/swapon.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/swapon/swapon.c b/sbin/swapon/swapon.c
index d8e6a936cd7..b92761925e2 100644
--- a/sbin/swapon/swapon.c
+++ b/sbin/swapon/swapon.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: swapon.c,v 1.3 1997/01/15 23:41:43 millert Exp $ */
+/* $OpenBSD: swapon.c,v 1.4 1997/02/06 09:50:56 dima Exp $ */
/* $NetBSD: swapon.c,v 1.7 1995/03/18 15:01:18 cgd Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)swapon.c 8.1 (Berkeley) 6/5/93";
#else
-static char rcsid[] = "$OpenBSD: swapon.c,v 1.3 1997/01/15 23:41:43 millert Exp $";
+static char rcsid[] = "$OpenBSD: swapon.c,v 1.4 1997/02/06 09:50:56 dima Exp $";
#endif
#endif /* not lint */
@@ -106,13 +106,13 @@ add(name, ignoreebusy)
if (swapon(name) == -1) {
switch (errno) {
case EINVAL:
- fprintf(stderr, "swapon: %s: device not configured\n",
+ fprintf(stderr, "swapon: %s: Device not configured\n",
name);
break;
case EBUSY:
if (!ignoreebusy)
fprintf(stderr,
- "swapon: %s: device already in use\n",
+ "swapon: %s: Device already in use\n",
name);
break;
default: