diff mbox

mount.nfs: Don't silently ignore invalid protocol versions.

Message ID 1389122717-14269-1-git-send-email-steved@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Steve Dickson Jan. 7, 2014, 7:25 p.m. UTC
Signed-off-by: Steve Dickson <steved@redhat.com>
---
 utils/mount/network.c | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox

Patch

diff --git a/utils/mount/network.c b/utils/mount/network.c
index 2853d00..2fdd2c0 100644
--- a/utils/mount/network.c
+++ b/utils/mount/network.c
@@ -1245,6 +1245,8 @@  nfs_nfs_version(struct mount_options *options, unsigned long *version)
 				*version = tmp;
 				return 1;
 			}
+			nfs_error(_("%s: parsing error on 'vers=' option\n"),
+					progname);
 			return 0;
 		case PO_NOT_FOUND:
 			nfs_error(_("%s: parsing error on 'vers=' option\n"),
@@ -1262,6 +1264,8 @@  nfs_nfs_version(struct mount_options *options, unsigned long *version)
 				*version = tmp;
 				return 1;
 			}
+			nfs_error(_("%s: parsing error on 'nfsvers=' option\n"),
+					progname);
 			return 0;
 		case PO_NOT_FOUND:
 			nfs_error(_("%s: parsing error on 'nfsvers=' option\n"),