From: Mark Wooding Date: Sat, 7 Jun 2014 23:01:46 +0000 (+0100) Subject: client/adh-query.c: Surprising comma rather than semicolon. X-Git-Tag: adns-1.5.0-rc0~103 X-Git-Url: https://git.distorted.org.uk/~mdw/adns/commitdiff_plain/75884a1571b83afd1bf1ba0e9546521594280254 client/adh-query.c: Surprising comma rather than semicolon. This doesn't change the meaning of the code, but it's really surprising. Signed-off-by: Mark Wooding --- diff --git a/client/adh-query.c b/client/adh-query.c index 125bb33..63b63f4 100644 --- a/client/adh-query.c +++ b/client/adh-query.c @@ -92,7 +92,7 @@ static void prep_query(struct query_node **qun_r, int *quflags_r) { (ov_qc_query ? adns_qf_quoteok_query : 0) | (ov_qc_anshost ? adns_qf_quoteok_anshost : 0) | (ov_qc_cname ? 0 : adns_qf_quoteok_cname) | - ov_cname, + ov_cname; *qun_r= qun; }