diff options
-rw-r--r-- | mount.c | 3 | ||||
-rw-r--r-- | util-linux/mount.c | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -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; |