about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/common.c13
-rw-r--r--src/common.h1
2 files changed, 0 insertions, 14 deletions
diff --git a/src/common.c b/src/common.c
index 1131c4c9..c8367592 100644
--- a/src/common.c
+++ b/src/common.c
@@ -168,19 +168,6 @@ str_contains(char str[], int size, char ch)
 }
 
 char *
-encode_xml(const char * const xml)
-{
-    char *coded_msg = str_replace(xml, "&", "&");
-    char *coded_msg2 = str_replace(coded_msg, "<", "&lt;");
-    char *coded_msg3 = str_replace(coded_msg2, ">", "&gt;");
-
-    free(coded_msg);
-    free(coded_msg2);
-
-    return coded_msg3;
-}
-
-char *
 prof_getline(FILE *stream)
 {
     char *buf;
diff --git a/src/common.h b/src/common.h
index b1b6834e..ad98aa2c 100644
--- a/src/common.h
+++ b/src/common.h
@@ -77,7 +77,6 @@ gboolean mkdir_recursive(const char *dir);
 char * str_replace(const char *string, const char *substr,
     const char *replacement);
 int str_contains(char str[], int size, char ch);
-char* encode_xml(const char * const xml);
 char * prof_getline(FILE *stream);
 char* release_get_latest(void);
 gboolean release_is_new(char *found_version);