diff options
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r-- | util-linux/mount.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index e511b798b..0295fabc6 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -385,8 +385,7 @@ extern int mount_main(int argc, char **argv) if (optind < argc) { /* if device is a filename get its real path */ - if ((strchr(argv[optind], ':') == NULL) && - (stat(argv[optind], &statbuf) == 0)) { + if (stat(argv[optind], &statbuf) == 0) { realpath(argv[optind], device); } else { safe_strncpy(device, argv[optind], PATH_MAX); |