diff options
author | Matt Kraai <kraai@debian.org> | 2001-02-28 15:33:12 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-02-28 15:33:12 +0000 |
commit | 93ba60f01d19f443187d8720fd8a93bdb890d4e5 (patch) | |
tree | 6c421438a6ce0ac49c0a1284ae52c3a1ac01d0a4 /util-linux | |
parent | 1b6cff3df400e36310307ef240c81f8e668573ab (diff) |
Keep trying if an NFS mount fails, and eliminate a call to exit(3).
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mount.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 551695b9b..76cab7d79 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -479,10 +479,9 @@ singlemount: if (strchr(device, ':') != NULL) filesystemType = "nfs"; if (strcmp(filesystemType, "nfs") == 0) { - rc = nfsmount (device, directory, &flags, - &extra_opts, &string_flags, 1); - if ( rc != 0) { - perror_msg_and_die("nfsmount failed"); + if (nfsmount (device, directory, &flags, &extra_opts, + &string_flags, 1)) { + perror_msg("nfsmount failed"); rc = EXIT_FAILURE; } } @@ -500,7 +499,7 @@ singlemount: if (all == FALSE && fstabmount == TRUE && directory == NULL) fprintf(stderr, "Can't find %s in /etc/fstab\n", device); - exit(rc); + return rc; } goto singlemount; |