summaryrefslogtreecommitdiffstats
path: root/modules/aaa/mod_auth_digest.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2001-02-22 15:22:39 +0100
committerJeff Trawick <trawick@apache.org>2001-02-22 15:22:39 +0100
commit3351f1b91fc99c38027e06c9bfa0c86357b17045 (patch)
treeab047efc5f6033dc8758d97225c19e5430e57f47 /modules/aaa/mod_auth_digest.c
parentjust making server_signature enum decl easier to read (for both humans and C:... (diff)
downloadapache2-3351f1b91fc99c38027e06c9bfa0c86357b17045.tar.xz
apache2-3351f1b91fc99c38027e06c9bfa0c86357b17045.zip
clean up a call to apr_psprintf() (trailing NULL not needed)
previously: mod_auth_digest.c: In function `set_shmem_size': mod_auth_digest.c:625: warning: too many arguments for format git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88275 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--modules/aaa/mod_auth_digest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c
index 3413270281..7263b6a963 100644
--- a/modules/aaa/mod_auth_digest.c
+++ b/modules/aaa/mod_auth_digest.c
@@ -622,7 +622,7 @@ static const char *set_shmem_size(cmd_parms *cmd, void *config,
min = sizeof(*client_list) + sizeof(client_entry*) + sizeof(client_entry);
if (size < min)
return apr_psprintf(cmd->pool, "size in AuthDigestShmemSize too small: "
- "%ld < %ld", size, min, NULL);
+ "%ld < %ld", size, min);
shmem_size = size;
num_buckets = (size - sizeof(*client_list)) /