aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mount.c3
-rw-r--r--util-linux/mount.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/mount.c b/mount.c
index fc057473f..b4f5746bc 100644
--- a/mount.c
+++ b/mount.c
@@ -479,7 +479,8 @@ singlemount:
479 if (strchr(device, ':') != NULL) 479 if (strchr(device, ':') != NULL)
480 filesystemType = "nfs"; 480 filesystemType = "nfs";
481 if (strcmp(filesystemType, "nfs") == 0) { 481 if (strcmp(filesystemType, "nfs") == 0) {
482 rc = nfsmount (device, directory, &flags, &extra_opts, &string_flags, 1) 482 rc = nfsmount (device, directory, &flags,
483 &extra_opts, &string_flags, 1);
483 if ( rc != 0) { 484 if ( rc != 0) {
484 fatalError("nfsmount failed: %s\n", strerror(errno)); 485 fatalError("nfsmount failed: %s\n", strerror(errno));
485 rc = FALSE; 486 rc = FALSE;
diff --git a/util-linux/mount.c b/util-linux/mount.c
index fc057473f..b4f5746bc 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -479,7 +479,8 @@ singlemount:
479 if (strchr(device, ':') != NULL) 479 if (strchr(device, ':') != NULL)
480 filesystemType = "nfs"; 480 filesystemType = "nfs";
481 if (strcmp(filesystemType, "nfs") == 0) { 481 if (strcmp(filesystemType, "nfs") == 0) {
482 rc = nfsmount (device, directory, &flags, &extra_opts, &string_flags, 1) 482 rc = nfsmount (device, directory, &flags,
483 &extra_opts, &string_flags, 1);
483 if ( rc != 0) { 484 if ( rc != 0) {
484 fatalError("nfsmount failed: %s\n", strerror(errno)); 485 fatalError("nfsmount failed: %s\n", strerror(errno));
485 rc = FALSE; 486 rc = FALSE;