Do not URI encode SRU database
[yaz-moved-to-github.git] / src / srwutil.c
index d011233..36d88b6 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the YAZ toolkit.
- * Copyright (C) 1995-2009 Index Data
+ * Copyright (C) 1995-2010 Index Data
  * See the file LICENSE for details.
  */
 /**
 #include <yaz/matchstr.h>
 #include <yaz/yaz-iconv.h>
 
-/** \brief decodes HTTP path (which should hold SRU database)
-    \param o memory for returned result
-    \param uri URI path (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)