From 135a12d8f3fdd2a35204baa9826b8803934a35c2 Mon Sep 17 00:00:00 2001 From: dima Date: Thu, 6 Feb 1997 09:50:56 +0000 Subject: [PATCH] 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" --- sbin/swapon/swapon.c | 8 ++++---- 1 file 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: -- 2.20.1