commit | f61dd19284b4a2a588b639f51afd833a88e335e8 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri May 27 09:00:19 2022 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri May 27 19:33:35 2022 +0200 |
tree | aa4fc25f847f512d3e2b277306be797efe5a7a14 | |
parent | d68ff018c526b0395ea7b4c0e20da719cf6b26c9 [diff] [blame] |
CLEANUP: stconn: rename cs_{shut,chk}* to sc_* This applies the following renaming: cs_shutr() -> sc_shutr() cs_shutw() -> sc_shutw() cs_chk_rcv() -> sc_chk_rcv() cs_chk_snd() -> sc_chk_snd() cs_must_kill_conn() -> sc_must_kill_conn()
diff --git a/src/dns.c b/src/dns.c index 69f16bc..749387e 100644 --- a/src/dns.c +++ b/src/dns.c
@@ -764,8 +764,8 @@ return; close: - cs_shutw(cs); - cs_shutr(cs); + sc_shutw(cs); + sc_shutr(cs); sc_ic(cs)->flags |= CF_READ_NULL; }