From ab06ea0b6f792f1456b1213b6a1e9d4dccd5c8a5 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Sun, 11 Feb 2001 21:00:04 +0000 Subject: [PATCH] Still lots to apr'ize here. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88095 13f79535-47bb-0310-9956-ffa450edef68 --- support/htpasswd.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/support/htpasswd.c b/support/htpasswd.c index ffed84f634..ed5c071c51 100644 --- a/support/htpasswd.c +++ b/support/htpasswd.c @@ -85,6 +85,7 @@ #include "apr_errno.h" #include "apr_file_io.h" #include "apr_general.h" +#include "apr_signal.h" #if APR_HAVE_STDIO_H #include @@ -92,9 +93,6 @@ #include "apr_md5.h" #include "apr_sha1.h" -#if APR_HAVE_SIGNAL_H -#include -#endif #include #if APR_HAVE_CRYPT_H @@ -422,7 +420,7 @@ int main(int argc, char *argv[]) #endif /*APR_CHARSET_EBCDIC*/ tempfilename = NULL; - signal(SIGINT, (void (*)(int)) interrupted); + apr_signal(SIGINT, (void (*)(int)) interrupted); /* * Preliminary check to make sure they provided at least -- 2.50.1