summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-04-29 16:00:33 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-04-29 16:00:33 +0000
commit85845c9bcb89eb3bcf3cf187b14a3aae09da4466 (patch)
treecb19952ceaf3a6b3177291eb42f6abcc21625885
parent0a3f836975fdde06b6ce7a1b07b313fd14c028f6 (diff)
downloadhttpd-85845c9bcb89eb3bcf3cf187b14a3aae09da4466.tar.gz
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
-rw-r--r--modules/aaa/mod_auth_digest.c2
-rw-r--r--server/util.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c
index 0d5671b381..4ad04a3f20 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 157b41021c..32467664ff 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"