From patchwork Sun Mar 21 19:20:22 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [05/10] mount.cifs: remove uuid option Date: Sun, 21 Mar 2010 09:20:22 -0000 From: Jeff Layton X-Patchwork-Id: 48229 Message-Id: <1269199227-21446-6-git-send-email-jlayton@redhat.com> To: linux-cifs-client@lists.samba.org Signed-off-by: Jeff Layton --- mount.cifs.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) 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;