diff options
Diffstat (limited to 'mount.c')
-rw-r--r-- | mount.c | 3 |
1 files changed, 2 insertions, 1 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; |