From 17ddb15db7d69491437287433c64f17ddba96ef9 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Wed, 19 Oct 2016 03:59:26 +0000 Subject: [PATCH] More detail on the "Scanning" console output print statements so it's clear which are inboxes, the secure inbound and the non-secure inbound. --- src/sbbs3/sbbsecho.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sbbs3/sbbsecho.c b/src/sbbs3/sbbsecho.c index 6b5f5ba2a2..2f9e5fb90b 100644 --- a/src/sbbs3/sbbsecho.c +++ b/src/sbbs3/sbbsecho.c @@ -5257,19 +5257,19 @@ int main(int argc, char **argv) for(i=0; i<cfg.nodecfgs && !terminated; i++) { if(cfg.nodecfg[i].inbox[0] == 0) continue; - printf("Scanning %s\n", cfg.nodecfg[i].inbox); + printf("Scanning %s inbox: %s\n", faddrtoa(&cfg.nodecfg[i].addr), cfg.nodecfg[i].inbox); do { import_packets(cfg.nodecfg[i].inbox, &cfg.nodecfg[i], /* secure: */true); } while(unpack_bundle(cfg.nodecfg[i].inbox)); } if(cfg.secure_inbound[0] && !terminated) { - printf("Scanning %s\n", cfg.secure_inbound); + printf("Scanning secure inbound: %s\n", cfg.secure_inbound); do { import_packets(cfg.secure_inbound, NULL, /* secure: */true); } while(unpack_bundle(cfg.secure_inbound)); } if(cfg.inbound[0] && !terminated) { - printf("Scanning %s\n", cfg.inbound); + printf("Scanning non-secure inbound: %s\n", cfg.inbound); do { import_packets(cfg.inbound, NULL, /* secure: */false); } while(unpack_bundle(cfg.inbound)); -- GitLab