diff options
author | Corinna Vinschen <vinschen@redhat.com> | 2019-02-20 13:41:24 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-02-22 15:04:16 +1100 |
commit | f02afa350afac1b2f2d1413259a27a4ba1e2ca24 (patch) | |
tree | c568d26fa3747cfe35d86b46df84d5bcc0417245 /servconf.c | |
parent | 4c55b674835478eb80a1a7aeae588aa654e2a433 (diff) |
Revert "[auth.c] On Cygwin, refuse usernames that have differences in case"
This reverts commit acc9b29486dfd649dfda474e5c1a03b317449f1c.
Signed-off-by: Corinna Vinschen <vinschen@redhat.com>
Diffstat (limited to 'servconf.c')
-rw-r--r-- | servconf.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1049,7 +1049,11 @@ match_cfg_line(char **condition, int line, struct connection_info *ci) } if (ci->user == NULL) match_test_missing_fatal("User", "user"); +#ifndef HAVE_CYGWIN if (match_pattern_list(ci->user, arg, 0) != 1) +#else + if (match_pattern_list(ci->user, arg, 1) != 1) +#endif result = 0; else debug("user %.100s matched 'User %.100s' at " |