Commit 31428fc7 authored by Colm MacCarthaigh's avatar Colm MacCarthaigh
Browse files

Prevent format specifier busting.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@514953 13f79535-47bb-0310-9956-ffa450edef68
parent aa891241
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ int main(int argc, const char * const argv[])
        /* See if we have it in our cache */
        hostname = (char *) apr_hash_get(cache, line, APR_HASH_KEY_STRING);
        if (hostname) {
            apr_file_printf(outfile, hostname);
            apr_file_printf(outfile, "%s", hostname);
            if (space) 
                apr_file_printf(outfile, " %s", space + 1);
            cachehits++;