Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/zbxhttp/urlencode.c')
-rw-r--r--src/libs/zbxhttp/urlencode.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libs/zbxhttp/urlencode.c b/src/libs/zbxhttp/urlencode.c
index e583ad53365..9fabd3f0cdc 100644
--- a/src/libs/zbxhttp/urlencode.c
+++ b/src/libs/zbxhttp/urlencode.c
@@ -23,8 +23,6 @@
/******************************************************************************
* *
- * Function: zbx_http_url_encode *
- * *
* Purpose: replaces unsafe characters with a '%' followed by two hexadecimal *
* digits (the only allowed exception is a space character that can *
* be replaced with a plus (+) sign or with %20).to url encode *
@@ -63,8 +61,6 @@ void zbx_http_url_encode(const char *source, char **result)
/******************************************************************************
* *
- * Function: zbx_http_url_decode *
- * *
* Purpose: replaces URL escape sequences ('+' or '%' followed by two *
* hexadecimal digits) with matching characters. *
* *