summary refs log tree commit diff stats
path: root/include
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2024-01-23 19:22:46 +0100
committerThomas Huth <thuth@redhat.com>2024-01-24 09:54:05 +0100
commit8fd466737c698a554ed04bc0b5459350e3a4c9b0 (patch)
treeb31b3e2f0adcb9d6c4bec31612eade4599251243 /include
parentfdd16f16f45119e799c238f82e07c72cad1d2a9e (diff)
downloadfocaccia-qemu-8fd466737c698a554ed04bc0b5459350e3a4c9b0.tar.gz
focaccia-qemu-8fd466737c698a554ed04bc0b5459350e3a4c9b0.zip
util/uri: Remove the uri_string_escape() function
Now that uri_resolve_relative() has been removed, this function is not
used in QEMU anymore - and if somebody needs this functionality, they
can simply use g_uri_escape_string() from the glib instead.

Reviewed-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: "Daniel P. Berrangé" <berrange@redhat.com>
Message-ID: <20240123182247.432642-4-thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/qemu/uri.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/qemu/uri.h b/include/qemu/uri.h
index 899ce852f5..255e61f452 100644
--- a/include/qemu/uri.h
+++ b/include/qemu/uri.h
@@ -76,7 +76,6 @@ URI *uri_parse(const char *str);
 URI *uri_parse_raw(const char *str, int raw);
 int uri_parse_into(URI *uri, const char *str);
 char *uri_to_string(URI *uri);
-char *uri_string_escape(const char *str, const char *list);
 void uri_free(URI *uri);
 
 /* Single web service query parameter 'name=value'. */