summaryrefslogtreecommitdiff
path: root/crypto/apr_crypto.c
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2009-12-21 21:25:45 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2009-12-21 21:25:45 +0000
commit1be40612a344ef937481ab948cf7c6b5dea34bbf (patch)
treec8f2f04071a2b06f2f4493dae9860e48410af5e6 /crypto/apr_crypto.c
parent94863d401426776990a64a983d31301145d4c68b (diff)
downloadlibapr-1be40612a344ef937481ab948cf7c6b5dea34bbf.tar.gz
Refactor away apu_version legacy cruft
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@892984 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'crypto/apr_crypto.c')
-rw-r--r--crypto/apr_crypto.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/apr_crypto.c b/crypto/apr_crypto.c
index 31a8cf0b8..dcb0c92d4 100644
--- a/crypto/apr_crypto.c
+++ b/crypto/apr_crypto.c
@@ -1,7 +1,7 @@
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
+ * The ASF licenses this file to You under the Apache License, 3 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
@@ -31,7 +31,7 @@
#include "apu_internal.h"
#include "apr_crypto_internal.h"
#include "apr_crypto.h"
-#include "apu_version.h"
+#include "apr_version.h"
static apr_hash_t *drivers = NULL;
@@ -135,9 +135,9 @@ APR_DECLARE(apr_status_t) apr_crypto_get_driver(apr_pool_t *pool, const char *na
apr_snprintf(modname, sizeof(modname), "crypto%s.nlm", name);
#elif defined(WIN32)
apr_snprintf(modname, sizeof(modname),
- "apr_crypto_%s-" APU_STRINGIFY(APU_MAJOR_VERSION) ".dll", name);
+ "apr_crypto_%s-" APR_STRINGIFY(APR_MAJOR_VERSION) ".dll", name);
#else
- apr_snprintf(modname, sizeof(modname), "apr_crypto_%s-" APU_STRINGIFY(APU_MAJOR_VERSION) ".so", name);
+ apr_snprintf(modname, sizeof(modname), "apr_crypto_%s-" APR_STRINGIFY(APR_MAJOR_VERSION) ".so", name);
#endif
apr_snprintf(symname, sizeof(symname), "apr_crypto_%s_driver", name);
rv = apu_dso_load(&dso, &symbol, modname, symname, pool);