--- lmtp2nntp.c 2001/10/09 08:22:29 1.69
+++ lmtp2nntp.c 2001/10/09 08:24:58 1.70
@@ -611,29 +611,29 @@
ctx->option_pidfile = strdup(optarg);
break;
case 's': /*POD [B<-s> I<size>] */
- ctx->option_maxmessagesize = atoi(optarg);
- if(ctx->option_maxmessagesize < 64) {
- fprintf(stderr, "%s:Error: maximum message size is unacceptable small.\n", ctx->progname);
- CU(ERR_EXECUTION);
- }
+ ctx->option_maxmessagesize = atoi(optarg);
+ if(ctx->option_maxmessagesize < 64) {
+ fprintf(stderr, "%s:Error: maximum message size is unacceptable small.\n", ctx->progname);
+ CU(ERR_EXECUTION);
+ }
break;
case 't': /*POD [B<-t> I<timeout>] */
- ctx->option_timeout = atoi(optarg);
- if(ctx->option_timeout < 0) {
- fprintf(stderr, "%s:Error: timeout %d to option -t must be a positive integer.\n", ctx->progname, ctx->option_waittime);
- CU(ERR_EXECUTION);
- }
+ ctx->option_timeout = atoi(optarg);
+ if(ctx->option_timeout < 0) {
+ fprintf(stderr, "%s:Error: timeout %d to option -t must be a positive integer.\n", ctx->progname, ctx->option_waittime);
+ CU(ERR_EXECUTION);
+ }
break;
case 'v': /*POD [B<-v>] (version)*/
fprintf(stdout, "%s\n", lmtp2nntp_version.v_gnu);
CU(0);
break;
case 'w': /*POD [B<-w> I<waittime>] */
- ctx->option_waittime = atoi(optarg);
- if(ctx->option_waittime < 1) {
- fprintf(stderr, "%s:Error: waittime %d to option -w must be greater 1 second.\n", ctx->progname, ctx->option_waittime);
- CU(ERR_EXECUTION);
- }
+ ctx->option_waittime = atoi(optarg);
+ if(ctx->option_waittime < 1) {
+ fprintf(stderr, "%s:Error: waittime %d to option -w must be greater 1 second.\n", ctx->progname, ctx->option_waittime);
+ CU(ERR_EXECUTION);
+ }
break;
case '?':
default:
|