diff options
author | Jeff Layton <jlayton@redhat.com> | 2010-03-22 08:03:37 -0400 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2010-03-22 08:03:37 -0400 |
commit | f603d4229a996124acb3e8e34e09ad93322b12d5 (patch) | |
tree | 28341bd2a919f67714fa6fcb85d2437f594cd020 /mount.cifs.c | |
parent | 6a8408fbd447217d5ef6d66ac0c7e65f79f21792 (diff) | |
download | cifs-utils-f603d4229a996124acb3e8e34e09ad93322b12d5.tar.gz cifs-utils-f603d4229a996124acb3e8e34e09ad93322b12d5.tar.bz2 cifs-utils-f603d4229a996124acb3e8e34e09ad93322b12d5.zip |
mount.cifs: remove uuid option
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'mount.cifs.c')
-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; |