From: Ryan Bloom Date: Mon, 9 Oct 2000 22:57:51 +0000 (+0000) Subject: Remove some deprecated functions X-Git-Tag: APACHE_2_0_ALPHA_8~435 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cce128b09e50a0a6de914363a30709c76149cd09;p=apache Remove some deprecated functions git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86486 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util.c b/server/util.c index 9191ad0df9..651a0cacec 100644 --- a/server/util.c +++ b/server/util.c @@ -1961,18 +1961,6 @@ API_EXPORT(char *) ap_pbase64encode(apr_pool_t *p, char *string) return encoded; } -/* deprecated names for the above two functions, here for compatibility - */ -API_EXPORT(char *) ap_uudecode(apr_pool_t *p, const char *bufcoded) -{ - return ap_pbase64decode(p, bufcoded); -} - -API_EXPORT(char *) ap_uuencode(apr_pool_t *p, char *string) -{ - return ap_pbase64encode(p, string); -} - /* we want to downcase the type/subtype for comparison purposes * but nothing else because ;parameter=foo values are case sensitive. * XXX: in truth we want to downcase parameter names... but really,