https://issues.apache.org/bugzilla/show_bug.cgi?id=54735
--- Comment #4 from [email protected] --- As far as I can tell this is caused by a bug in "httpd-2.4.4/support/passwd_common.c". I created the following patch and it works again. diff -ur httpd-2.4.4-orig/support/passwd_common.c httpd-2.4.4/support/passwd_common.c --- httpd-2.4.4-orig/support/passwd_common.c 2012-12-11 17:37:25.000000000 +0700 +++ httpd-2.4.4/support/passwd_common.c 2013-03-17 13:33:58.429462196 +0700 @@ -146,7 +146,6 @@ int mkhash(struct passwd_ctx *ctx) { char *pw; - char pwin[MAX_STRING_LEN]; char salt[16]; apr_status_t rv; int ret = 0; @@ -165,7 +164,7 @@ else { if ((ret = get_password(ctx)) != 0) return ret; - pw = pwin; + pw = strdup(ctx->out); } switch (ctx->alg) { -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
