diff --git a/ChangeLog b/ChangeLog index c42b334f..873dc943 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,10 @@ $Id$ -v0.39.1 22-Oct-2003 +v0.39.2 21-Nov-2003 + + +v0.39.1 22-Oct-2003 - 21-Nov-2003 general: Make dist now creates bzip2 archives. @@ -48,6 +51,10 @@ v0.39.1 22-Oct-2003 Added dynamic optimum sendbuffer size with a maximum of 8192 bytes with an average size of 2048 bytes. Removed ITN support. + Changed two inbound logmessages to debug level. + + mbfido: + Changed two logmessages to debug level. mbsetup: In node editor, fixed error message when there was no more diff --git a/mbcico/inbound.c b/mbcico/inbound.c index 32a9aaf2..5266479c 100644 --- a/mbcico/inbound.c +++ b/mbcico/inbound.c @@ -73,7 +73,7 @@ int inbound_open(faddr *addr, int protected) mkdirs(temp, 0700); free(temp); - Syslog('+', "Inbound set to \"%s\"", tempinbound); + Syslog('s', "Inbound set to \"%s\"", tempinbound); return 0; } @@ -93,7 +93,7 @@ int inbound_close(int success) struct stat stb; int rc; - Syslog('+', "Closing temp inbound after a %s session", success?"good":"failed"); + Syslog('s', "Closing temp inbound after a %s session", success?"good":"failed"); if (! success) { if (tempinbound) free(tempinbound); diff --git a/mbfido/queue.c b/mbfido/queue.c index 4116f354..ea4d609d 100644 --- a/mbfido/queue.c +++ b/mbfido/queue.c @@ -556,7 +556,7 @@ void flush_dir(char *ndir) p = strchr(p, ' '); p++; - Syslog('+', "File attach %s", p); + Syslog('p', "File attach %s", p); if (nodes.Session_out == S_DIRECT) { attach(noden, p, mode, flavor); } else if (nodes.Session_out == S_DIR) { diff --git a/mbfido/tic.c b/mbfido/tic.c index dcc83dbf..b22506c4 100644 --- a/mbfido/tic.c +++ b/mbfido/tic.c @@ -474,7 +474,7 @@ int LoadTic(char *inb, char *tfn) if (rename(Temp, Temp2)) WriteError("$Can't rename %s to %s", Temp, Temp2); else - Syslog('+', "Renamed %s to %s", Temp, Temp2); + Syslog('f', "Renamed %s to %s", Temp, Temp2); } } strncpy(TIC.NewFile, TIC.TicIn.File, 80);