diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2019-11-24 13:47:38 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2019-11-24 13:47:38 +0000 |
commit | b2d54f831659ee95d4d4cf395f568b395e262310 (patch) | |
tree | 60f3c2e51e869de2d8d2074e48bf45e40610cf1f /src | |
parent | dc2d885ade485ba0d631bb7dea251e8558922648 (diff) |
Docs: smtp_printf() in the local_scan API
Broken-by: 925ac8e4f1
Diffstat (limited to 'src')
-rw-r--r-- | src/src/smtp_in.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/src/smtp_in.c b/src/src/smtp_in.c index 18e04dc2e..f37b2f6e0 100644 --- a/src/src/smtp_in.c +++ b/src/src/smtp_in.c @@ -877,6 +877,8 @@ flush for non-TLS connections. The smtp_fflush() function is available for checking that: for convenience, TLS output errors are remembered here so that they are also picked up later by smtp_fflush(). +This function is exposed to the local_scan API; do not change the signature. + Arguments: format format string more further data expected @@ -897,7 +899,10 @@ va_end(ap); /* This is split off so that verify.c:respond_printf() can, in effect, call smtp_printf(), bearing in mind that in C a vararg function can't directly -call another vararg function, only a function which accepts a va_list. */ +call another vararg function, only a function which accepts a va_list. + +This function is exposed to the local_scan API; do not change the signature. +*/ /*XXX consider passing caller-info in, for string_vformat-onward */ void |