commit | e9187f8263ec1aa93379479c0454981746a543a8 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Apr 14 15:27:14 2014 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Mon Apr 14 15:52:48 2014 +0200 |
tree | 32bc0fbaa63fe49221dedc0e1218552ed716050f | |
parent | a1dab55e1e325317e0264a642238e82608a14298 [diff] |
BUILD/MEDIUM: http: remove calls to sprintf() OpenBSD complains about this use of sprintf() : src/proto_http.o(.text+0xb0e6): In function `http_process_request': src/proto_http.c:4127: warning: sprintf() is often misused, please use snprintf() Here there's no risk as the strings are way shorter than the buffer size but let's fix it anyway.