dirmngr: Fix case handling of "ldapi" scheme.

* dirmngr/ldap-parse-uri.c (ldap_uri_p): s/'i'/'I'.
--

GnuPG-bug-id: 4758
Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
Werner Koch 2020-07-02 16:05:40 +02:00
parent ad6bf5d67f
commit 0795ab1c8f
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ ldap_uri_p (const char *url)
&& (url[3] == 'p' || url[3] == 'P')
&& (url[4] == ':'
|| ((url[4] == 's' || url[4] == 'S'
|| url[4] == 'i' || url[4] == 'i')
|| url[4] == 'i' || url[4] == 'I')
&& url[5] == ':'))))
return 1;
return 0;