diff options
-rw-r--r-- | mount.cifs.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mount.cifs.c b/mount.cifs.c index 76fc21d..088fb1c 100644 --- a/mount.cifs.c +++ b/mount.cifs.c @@ -1101,7 +1101,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 } }; @@ -1166,7 +1165,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; @@ -1246,9 +1244,6 @@ int main(int argc, char ** argv) case 'r': /* mount readonly */ flags |= MS_RDONLY; break; - case 'U': - uuid = optarg; - break; case 'v': ++verboseflag; break; |