summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--utils/mount/mount.c8
-rw-r--r--utils/mount/nfsumount.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/utils/mount/mount.c b/utils/mount/mount.c
index cdccfe8..45428b0 100644
--- a/utils/mount/mount.c
+++ b/utils/mount/mount.c
@@ -274,16 +274,16 @@ static void mount_error(char *node)
{
switch(errno) {
case ENOTDIR:
- printf("%s: mount point %s is not a directory\n", progname, node);
+ fprintf(stderr, "%s: mount point %s is not a directory\n", progname, node);
break;
case EBUSY:
- printf("%s: %s is already mounted or busy\n", progname, node);
+ fprintf(stderr, "%s: %s is already mounted or busy\n", progname, node);
break;
case ENOENT:
- printf("%s: mount point %s does not exist\n", progname, node);
+ fprintf(stderr, "%s: mount point %s does not exist\n", progname, node);
break;
default:
- printf("%s: %s\n", progname, strerror(errno));
+ fprintf(stderr, "%s: %s\n", progname, strerror(errno));
}
}
diff --git a/utils/mount/nfsumount.c b/utils/mount/nfsumount.c
index 1d10cc6..1decf07 100644
--- a/utils/mount/nfsumount.c
+++ b/utils/mount/nfsumount.c
@@ -252,7 +252,7 @@ int _nfsumount(const char *spec, char *opts)
goto out_bad;
return nfs_call_umount(&mnt_server, &dirname);
out_bad:
- printf("%s: %s: not found or not mounted\n", progname, spec);
+ fprintf(stderr, "%s: %s: not found or not mounted\n", progname, spec);
return 0;
}