From 32f2769800e5732172bff35fa8ad1c5b0186b99a Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Tue, 22 Aug 2000 15:35:31 +0000 Subject: From Ken Chalmers : The current CVS mount.c is missing a semicolon, causing building to fail if NFS is enabled (#define BB_NFSMOUNT). --- util-linux/mount.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'util-linux/mount.c') 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: if (strchr(device, ':') != NULL) filesystemType = "nfs"; if (strcmp(filesystemType, "nfs") == 0) { - rc = nfsmount (device, directory, &flags, &extra_opts, &string_flags, 1) + rc = nfsmount (device, directory, &flags, + &extra_opts, &string_flags, 1); if ( rc != 0) { fatalError("nfsmount failed: %s\n", strerror(errno)); rc = FALSE; -- cgit v1.2.3