projects
/
haproxy-3.0.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61749d7
)
CLEANUP: log: Fix %rc comment in sess_build_logline()
author
Christopher Faulet
<cfaulet@haproxy.com>
Tue, 28 Nov 2023 10:21:40 +0000
(11:21 +0100)
committer
Christopher Faulet
<cfaulet@haproxy.com>
Wed, 29 Nov 2023 07:59:27 +0000
(08:59 +0100)
%rq was used instead of %rc.
src/log.c
patch
|
blob
|
history
diff --git
a/src/log.c
b/src/log.c
index
96f53bc
..
156bf61
100644
(file)
--- a/
src/log.c
+++ b/
src/log.c
@@
-3244,7
+3244,7
@@
int sess_build_logline(struct session *sess, struct stream *s, char *dst, size_t
last_isspace = 0;
break;
- case LOG_FMT_RETRIES: // %rq
+ case LOG_FMT_RETRIES: // %rc
if (s_flags & SF_REDISP)
LOGCHAR('+');
ret = ltoa_o((s ? s->conn_retries : 0), tmplog, dst + maxsize - tmplog);