From: William A. Rowe Jr Date: Sat, 29 Apr 2000 16:00:33 +0000 (+0000) Subject: PR: X-Git-Tag: APACHE_2_0_ALPHA_4~227 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85845c9bcb89eb3bcf3cf187b14a3aae09da4466;p=thirdparty%2Fapache%2Fhttpd.git PR: Obtained from: Submitted by: William Rowe Reviewed by: Created ap_base64.h to extract those declarations for clarity from ap.h CORE_PRIVATE, httpd.h do not belong in library functions, removed from ap.lib Use apr headers for declarations in ap.lib stuff, kill AP_LONG from ap_sha1.h Move credit to lib/apr/lib/ap_snprintf.c from ap.h for authorship git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85097 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index 0d5671b3811..4ad04a3f203 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -94,7 +94,7 @@ #include "http_request.h" #include "http_log.h" #include "http_protocol.h" -#include "ap.h" +#include "ap_base64.h" #include "ap_ctype.h" #include "util_uri.h" #include "util_md5.h" diff --git a/server/util.c b/server/util.c index 157b41021c3..32467664ff3 100644 --- a/server/util.c +++ b/server/util.c @@ -72,7 +72,7 @@ #define CORE_PRIVATE #include "ap_config.h" -#include "ap.h" +#include "ap_base64.h" #include "httpd.h" #include "http_main.h" #include "http_log.h"