From: dima Date: Thu, 6 Feb 1997 09:50:56 +0000 (+0000) Subject: Cosmetic change: "device not configured" -> "Device not configured" X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=135a12d8f3fdd2a35204baa9826b8803934a35c2;p=openbsd 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" --- 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: