From 06f83ea8b4a9d711aa0e308223c6be2e6ca0b08e Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 14 Jan 1997 23:16:24 +0000 Subject: The batchlimit option is now per user. svn path=/trunk/; revision=764 --- options.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'options.c') diff --git a/options.c b/options.c index bbd42cf6..f3b76831 100644 --- a/options.c +++ b/options.c @@ -119,7 +119,6 @@ struct query *ctl; /* option record to be initialized */ int option_index; memset(ctl, '\0', sizeof(struct query)); /* start clean */ - cmd_batchlimit = -1; while (!errflag && (c = getopt_long(argc,argv,shortoptions, @@ -253,7 +252,7 @@ struct query *ctl; /* option record to be initialized */ break; case 'b': case LA_BATCHLIMIT: - cmd_batchlimit = atoi(optarg); + ctl->batchlimit = atoi(optarg); break; case 'B': case LA_FETCHLIMIT: -- cgit v1.2.3