--- lmtp2nntp.c 2001/09/07 13:53:16 1.42
+++ lmtp2nntp.c 2001/09/07 13:56:31 1.43
@@ -156,7 +156,6 @@
*/
fprintf(stderr,
"USAGE: %s "
- "[-V]"
"[-b bindaddr[:port]"
"[-d deliverymode]"
"[-g groupmode]"
@@ -164,7 +163,7 @@
"[-m mailfrom]"
"[-n nodename]"
"[-s size]"
- "[-t tracefile]"
+ "[-l level[:logfile]]"
"[-v]"
"[-w waittime]"
"newsgroup [newsgroup ...]"
@@ -279,7 +278,6 @@
else
ctx->cpBindp = strdup("0");
- fprintf(stderr, "DEBUG: creating TCP socket address for \"%s:%s\"\n", ctx->cpBindh, ctx->cpBindp);
if ((ctx->saBind = sa_create(SA_IP, "tcp", ctx->cpBindh, ctx->cpBindp)) == NULL) {
fprintf(stderr, "%s:Error: creating TCP socket address failed for \"%s:%s\": %s\n",
ctx->progname,
@@ -508,7 +506,6 @@
exit(ERR_EXECUTION);
}
-fprintf(stderr, "DEBUG: ctx->option_levelmask=0x%x\n", ctx->option_levelmask);
if (l2_stream_levels(ctx->l2, ctx->option_levelmask) != L2_OK) {
fprintf(stderr, "%s:Error: logging failed to set global logging level\n", ctx->progname);
exit(ERR_EXECUTION);
|