aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2026-02-10 13:00:13 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2026-02-10 13:00:13 +0000
commitf27ce47f1cdc338b1c4a49a7e3bdf8df3c361411 (patch)
tree907c618b91e2289961ad99f6658d22b587b51c9e
parent4b405691389778997c472e8017186a009ae19a8e (diff)
downloadsmtpd-starttls-proxy-f27ce47f1cdc338b1c4a49a7e3bdf8df3c361411.tar.gz
with correct syntax if possible
-rw-r--r--src/qmail-remote/smtproutes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmail-remote/smtproutes.c b/src/qmail-remote/smtproutes.c
index 0470fe4..c8ed263 100644
--- a/src/qmail-remote/smtproutes.c
+++ b/src/qmail-remote/smtproutes.c
@@ -240,7 +240,7 @@ int smtproutes_match (smtproutes const *routes, char const *s, stralloc *sa, siz
if (!r) return 0 ;
if (data.len < 3) return 0 ;
if (data.s[data.len - 1]) qmailr_temp("Invalid ", "run/qmail-remote/smtproutes.cdb") ;
- LOLDEBUG("found: key %s has relay %s", s, data.s + 2)
+ LOLDEBUG("found: key %s has relay %s", s, data.s + 2) ;
*pos = sa->len ;
uint16_unpack_big(data.s, port) ;
if (!stralloc_catb(sa, data.s + 2, data.len - 2)) dienomem() ;