From: Adam Dickmeiss Date: Fri, 8 May 2015 12:55:27 +0000 (+0200) Subject: Allow Content-Type application/sru+xml YAZ-840 X-Git-Tag: v5.12.0~1 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=9a50808021be48e8ff272f762b9f8245330a79e4;hp=b2bc97df294f5da6c93e1119a42536b23afce8ef Allow Content-Type application/sru+xml YAZ-840 --- diff --git a/src/srwutil.c b/src/srwutil.c index 9167ea8..1de920d 100644 --- a/src/srwutil.c +++ b/src/srwutil.c @@ -97,6 +97,8 @@ int yaz_srw_check_content_type(Z_HTTP_Response *hres) return 1; if (!yaz_strcmp_del("application/xml", content_type, "; ")) return 1; + if (!yaz_strcmp_del("application/sru+xml", content_type, "; ")) + return 1; } return 0; }