[PATCH 05/10] mount.cifs: remove uuid option
Jeff Layton <[email protected]>
| Newsgroups | gmane.linux.file-systems.cifs |
|---|---|
| Message-ID | <[email protected]> |
Signed-off-by: Jeff Layton <[email protected]> --- 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; -- 1.6.6.1