summaryrefslogtreecommitdiffstats
path: root/support/htpasswd.c
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2008-02-22 11:14:07 +0100
committerJoe Orton <jorton@apache.org>2008-02-22 11:14:07 +0100
commitc40628c17214a7a7ce6b970c2acb1578cbdc1542 (patch)
tree8b2a6738f3cea06740ac6c1841faeb53bf47678d /support/htpasswd.c
parentbackported in r629983 (diff)
downloadapache2-c40628c17214a7a7ce6b970c2acb1578cbdc1542.tar.xz
apache2-c40628c17214a7a7ce6b970c2acb1578cbdc1542.zip
* support/htpasswd.c (seed_rand): Fix compiler warning.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630139 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/htpasswd.c')
-rw-r--r--support/htpasswd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/htpasswd.c b/support/htpasswd.c
index c3d1d5fb4f..c94f2a7573 100644
--- a/support/htpasswd.c
+++ b/support/htpasswd.c
@@ -126,7 +126,7 @@ static void generate_salt(char *s, size_t size)
}
}
-static apr_status_t seed_rand()
+static apr_status_t seed_rand(void)
{
int seed = 0;
apr_status_t rv;