diff mbox

[05/10] mount.cifs: remove uuid option

Message ID 1269199227-21446-6-git-send-email-jlayton@redhat.com
State New
Headers show

Commit Message

Jeff Layton March 21, 2010, 7:20 p.m. UTC
Signed-off-by: Jeff Layton <jlayton@redhat.com>
---
 mount.cifs.c |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)
diff mbox

Patch

diff --git a/mount.cifs.c b/mount.cifs.c
index 1ba4175..84167f3 100644
--- a/mount.cifs.c
+++ b/mount.cifs.c
@@ -1102,7 +1102,6 @@  static struct option longopts[] = {
 	{ "pass",1,NULL,'p'},
 	{ "credentials",1,NULL,'c'},
 	{ "port",1,NULL,'P'},
-	/* { "uuid",1,NULL,'U'}, */ /* BB unimplemented */
 	{ NULL, 0, NULL, 0 }
 };
 
@@ -1167,7 +1166,6 @@  int main(int argc, char ** argv)
 	char * orgoptions = NULL;
 	char * share_name = NULL;
 	const char * ipaddr = NULL;
-	char * uuid = NULL;
 	char * mountpoint = NULL;
 	char * options = NULL;
 	char * optionstail;
@@ -1247,9 +1245,6 @@  int main(int argc, char ** argv)
 		case 'r':  /* mount readonly */
 			flags |= MS_RDONLY;
 			break;
-		case 'U':
-			uuid = optarg;
-			break;
 		case 'v':
 			++verboseflag;
 			break;