summaryrefslogtreecommitdiff
path: root/passwd
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-12-22 16:54:57 +0000
committerJeff Trawick <trawick@apache.org>2000-12-22 16:54:57 +0000
commit45b80340b272835df1e220f333169160d1354d2f (patch)
treecd4b74ad52a55f5e452706b4c322c5859e48a270 /passwd
parent7b7e60b56c56e209c7eeb522aad43f4886fe0d08 (diff)
downloadapr-45b80340b272835df1e220f333169160d1354d2f.tar.gz
These two patches for apr and apr-util fix compile warnings on Solaris for
str* and mem* functions. This fixes all of them. APR_HAVE_STRINGS_H is now defined in apr.h. Submitted by: Dale Ghent <daleg@elemental.org> Reviewed by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60987 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'passwd')
-rw-r--r--passwd/apr_getpass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/passwd/apr_getpass.c b/passwd/apr_getpass.c
index 9a7c5d5b4..bfb6457e4 100644
--- a/passwd/apr_getpass.c
+++ b/passwd/apr_getpass.c
@@ -73,7 +73,7 @@
#if HAVE_STDLIB_H
#include <stdlib.h>
#endif
-#ifdef HAVE_STRINGS_H
+#if APR_HAVE_STRINGS_H
#include <strings.h>
#endif