]> granicus.if.org Git - apache/commitdiff
Remove some deprecated functions
authorRyan Bloom <rbb@apache.org>
Mon, 9 Oct 2000 22:57:51 +0000 (22:57 +0000)
committerRyan Bloom <rbb@apache.org>
Mon, 9 Oct 2000 22:57:51 +0000 (22:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86486 13f79535-47bb-0310-9956-ffa450edef68

server/util.c

index 9191ad0df9db8f727a5efd930c77e0485ba251f7..651a0cacecfe1126853e047015018d5638bf067b 100644 (file)
@@ -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,