From ae80b3d484b49ba877cb79f792fd217e1b7e9ffd Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 19 Mar 2010 13:30:15 +0100 Subject: [PATCH] Do not URI encode SRU database This reverts SRU URI handling back to YAZ 3.0.50 behavior. --- src/srwutil.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/srwutil.c b/src/srwutil.c index e142104..36d88b6 100644 --- a/src/srwutil.c +++ b/src/srwutil.c @@ -13,24 +13,16 @@ #include #include -/** \brief decodes HTTP path (which should hold SRU database) - \param n memory for returned result - \param uri URI path (up to but not including ?) - \param len URI len (up to but not including ?) - \returns ODR allocated database -*/ static char *yaz_decode_sru_dbpath_odr(ODR n, const char *uri, size_t len) { - char *ret = odr_malloc(n, strlen(uri) + 1); - yaz_decode_uri_component(ret, uri, len); - return ret; + return odr_strdupn(n, uri, len); } void yaz_encode_sru_dbpath_buf(char *dst, const char *db) { assert(db); *dst = '/'; - yaz_encode_uri_component(dst+1, db); + strcpy(dst+1, db); } char *yaz_encode_sru_dbpath_odr(ODR out, const char *db) -- 1.7.10.4