Take out special error message for EINVAL...we really do want it to be

"invalid argument".
This commit is contained in:
David Greenman 1995-05-14 02:18:18 +00:00
parent 563120df88
commit 43e6fcd576
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8502

View File

@ -96,10 +96,6 @@ add(char *name, int ignoreebusy)
if (swapon(name) == -1) {
switch (errno) {
case EINVAL:
fprintf(stderr, "swapon: %s: device not configured\n",
name);
break;
case EBUSY:
if (!ignoreebusy)
fprintf(stderr,