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 /match.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 'match.c')
-rw-r--r-- | match.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -111,6 +111,8 @@ match_pattern(const char *s, const char *pattern) | |||
111 | /* NOTREACHED */ | 111 | /* NOTREACHED */ |
112 | } | 112 | } |
113 | 113 | ||
114 | #ifndef HAVE_CYGWIN /* Cygwin version in openbsd-compat/bsd-cygwin_util.c */ | ||
115 | |||
114 | /* | 116 | /* |
115 | * Tries to match the string against the | 117 | * Tries to match the string against the |
116 | * comma-separated sequence of subpatterns (each possibly preceded by ! to | 118 | * comma-separated sequence of subpatterns (each possibly preceded by ! to |
@@ -170,6 +172,8 @@ match_pattern_list(const char *string, const char *pattern, int dolower) | |||
170 | return got_positive; | 172 | return got_positive; |
171 | } | 173 | } |
172 | 174 | ||
175 | #endif | ||
176 | |||
173 | /* | 177 | /* |
174 | * Tries to match the host name (which must be in all lowercase) against the | 178 | * Tries to match the host name (which must be in all lowercase) against the |
175 | * comma-separated sequence of subpatterns (each possibly preceded by ! to | 179 | * comma-separated sequence of subpatterns (each possibly preceded by ! to |