diff options
author | svnmir <svnmir@FreeBSD.org> | 2015-08-09 04:37:48 +0000 |
---|---|---|
committer | svnmir <svnmir@FreeBSD.org> | 2015-08-09 04:37:48 +0000 |
commit | 91308aec6ca93cab82659cd43b3f6a83d366350b (patch) | |
tree | 78a13bd0acf7405df6eb6ca94a4e354d124065a6 /subversion/libsvn_ra_serf/options.c | |
parent | 0d1e05fe9c6027aaf742eb9b8b05f4dbefb92e2e (diff) | |
download | FreeBSD-src-91308aec6ca93cab82659cd43b3f6a83d366350b.zip FreeBSD-src-91308aec6ca93cab82659cd43b3f6a83d366350b.tar.gz |
Vendor import subversion-1.8.14
Diffstat (limited to 'subversion/libsvn_ra_serf/options.c')
-rw-r--r-- | subversion/libsvn_ra_serf/options.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/subversion/libsvn_ra_serf/options.c b/subversion/libsvn_ra_serf/options.c index f61ee87..5389b04 100644 --- a/subversion/libsvn_ra_serf/options.c +++ b/subversion/libsvn_ra_serf/options.c @@ -33,6 +33,7 @@ #include "svn_ra.h" #include "svn_dav.h" #include "svn_xml.h" +#include "svn_ctype.h" #include "../libsvn_ra/ra_loader.h" #include "svn_private_config.h" @@ -227,7 +228,9 @@ capabilities_headers_iterator_callback(void *baton, } /* SVN-specific headers -- if present, server supports HTTP protocol v2 */ - else if (strncmp(key, "SVN", 3) == 0) + else if (!svn_ctype_casecmp(key[0], 'S') + && !svn_ctype_casecmp(key[1], 'V') + && !svn_ctype_casecmp(key[2], 'N')) { /* If we've not yet seen any information about supported POST requests, we'll initialize the list/hash with "create-txn" |