mount.cifs: don't prompt for password on krb5 mounts
authorJeff Layton <jlayton@redhat.com>
Sat, 16 Aug 2008 10:09:29 +0000 (06:09 -0400)
committerJeff Layton <jlayton@redhat.com>
Thu, 21 Aug 2008 23:38:35 +0000 (19:38 -0400)
krb5 mounts require that the user already have a valid krb5 ticket.
Since we can't currently use the password entered, don't prompt for it.

Also, switch to using strncmp instead of strcmp here.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
(This used to be commit c75791c34abebe23c6f6a5534b0358514ec4eabc)

source3/client/mount.cifs.c

index c7009e306c08422245e1a925b68bb0fbeb3f6294..dd878aa07b41448fef6eb032183363976d5c9388 100644 (file)
@@ -473,7 +473,8 @@ static int parse_options(char ** optionsp, int * filesys_flags)
                        }
                } else if (strncmp(data, "sec", 3) == 0) {
                        if (value) {
-                               if (!strcmp(value, "none"))
+                               if (!strncmp(value, "none", 4) ||
+                                   !strncmp(value, "krb5", 4))
                                        got_password = 1;
                        }
                } else if (strncmp(data, "ip", 2) == 0) {