diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gss_creds.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gss_creds.c b/src/gss_creds.c index dc404c7..9b7b467 100644 --- a/src/gss_creds.c +++ b/src/gss_creds.c @@ -62,7 +62,7 @@ static int get_initial_creds(struct gssntlm_name *name, pwd = p; strsep(&p, "\r\n"); - /* if no name is specified user the first found */ + /* if no name is specified use the first found */ if (name == NULL) { found = true; break; @@ -106,8 +106,7 @@ static int get_initial_creds(struct gssntlm_name *name, if (envvar != NULL) { cred->lm_compatibility_level = atoi(envvar); } else { - /* use most secure defaults for now, we can add options to - * relax security later */ + /* use the most secure setting by default */ cred->lm_compatibility_level = SEC_LEVEL_MAX; } |