From 5049fde10bf83e92f096e99fa590ff6ab5799896 Mon Sep 17 00:00:00 2001 From: "Jean-Marc Pigeon (Delson)" Date: Fri, 15 Aug 2025 15:46:28 -0400 Subject: [PATCH] Improving report about abort data --- lib/lvleml.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/lvleml.c b/lib/lvleml.c index d433435..855a9ae 100644 --- a/lib/lvleml.c +++ b/lib/lvleml.c @@ -791,8 +791,9 @@ while (proceed==true) { switch (phase) { case 0 : //are we encrypted and on the right port if (soc_iscrypted(contact->socptr)==false) { - (void) eml_transmit(contact,true,"%d 5.7.0 no authentication on " - "clear chanel",FAILED); + static char *cmt="no authentication on clear chanel"; + (void) eml_transmit(contact,true,"%d 5.7.0 %s",FAILED,cmt); + (void) setterminator(contact,cmt); phase=999; //No need to go further } break; -- 2.47.3