From 2cdb0406ad50bc36098981b601e99ba9ecd96f4c Mon Sep 17 00:00:00 2001 From: Bojan Smojver Date: Tue, 30 Jan 2007 21:38:46 +0000 Subject: [PATCH] Fix typos in APU_DSO_BUILD git-svn-id: https://svn.eu.apache.org/repos/asf/apr/apr-util/trunk@501582 13f79535-47bb-0310-9956-ffa450edef68 --- dbd/apr_dbd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dbd/apr_dbd.c b/dbd/apr_dbd.c index 712de66..aa19c06 100644 --- a/dbd/apr_dbd.c +++ b/dbd/apr_dbd.c @@ -116,7 +116,7 @@ APU_DECLARE(apr_status_t) apr_dbd_init(apr_pool_t *pool) return ret; } -#if defined(APR_DSO_BUILD) && APR_HAS_THREADS +#if defined(APU_DSO_BUILD) && APR_HAS_THREADS #define dbd_drivers_lock(m) apr_thread_mutex_lock(m) #define dbd_drivers_unlock(m) apr_thread_mutex_unlock(m) #else @@ -127,7 +127,7 @@ APU_DECLARE(apr_status_t) apr_dbd_init(apr_pool_t *pool) APU_DECLARE(apr_status_t) apr_dbd_get_driver(apr_pool_t *pool, const char *name, const apr_dbd_driver_t **driver) { -#ifdef APR_DSO_BUILD +#ifdef APU_DSO_BUILD char path[80]; apr_dso_handle_t *dlhandle = NULL; apr_dso_handle_sym_t symbol; @@ -145,7 +145,7 @@ APU_DECLARE(apr_status_t) apr_dbd_get_driver(apr_pool_t *pool, const char *name, return APR_SUCCESS; } -#ifdef APR_DSO_BUILD +#ifdef APU_DSO_BUILD #ifdef WIN32 sprintf(path, "apr_dbd_%s.dll", name); -- 2.11.4.GIT