]> granicus.if.org Git - apache/commitdiff
Use apr_file_printf(... "%pm"...) instead of explicit call to apr_strerror
authorChristophe Jaillet <jailletc36@apache.org>
Tue, 2 Apr 2013 21:03:25 +0000 (21:03 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Tue, 2 Apr 2013 21:03:25 +0000 (21:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1463750 13f79535-47bb-0310-9956-ffa450edef68

support/htdigest.c

index 6a0e26f123f95feb5edc7addb41999e1ec69b494..a8b464aedda3ca1ed6889de4fc18eda9621af640 100644 (file)
@@ -202,8 +202,8 @@ int main(int argc, const char * const argv[])
 #if APR_CHARSET_EBCDIC
     rv = apr_xlate_open(&to_ascii, "ISO-8859-1", APR_DEFAULT_CHARSET, cntxt);
     if (rv) {
-        apr_file_printf(errfile, "apr_xlate_open(): %s (%d)\n",
-                apr_strerror(rv, line, sizeof(line)), rv);
+        apr_file_printf(errfile, "apr_xlate_open(): %pm (%d)\n",
+                &rv, rv);
         exit(1);
     }
 #endif
@@ -215,11 +215,8 @@ int main(int argc, const char * const argv[])
         rv = apr_file_open(&f, argv[2], APR_WRITE | APR_CREATE,
                            APR_OS_DEFAULT, cntxt);
         if (rv != APR_SUCCESS) {
-            char errmsg[120];
-
-            apr_file_printf(errfile, "Could not open passwd file %s for writing: %s\n",
-                    argv[2],
-                    apr_strerror(rv, errmsg, sizeof errmsg));
+            apr_file_printf(errfile, "Could not open passwd file %s for writing: %pm\n",
+                    argv[2], &rv);
             exit(1);
         }
         apr_cpystrn(user, argv[4], sizeof(user));