sw-collector: Avoid naming conflicts with local count variables

This commit is contained in:
Tobias Brunner 2020-01-28 14:38:27 +01:00
parent f168f5782b
commit a7126dd47e
1 changed files with 5 additions and 5 deletions

View File

@ -40,7 +40,7 @@
*/
static int debug_level = 2;
static bool stderr_quiet = FALSE;
static int count = 0;
static int max_count = 0;
typedef enum collector_op_t collector_op_t;
@ -169,7 +169,7 @@ static collector_op_t do_args(int argc, char *argv[], bool *full_tags,
op = COLLECTOR_OP_CHECK;
continue;
case 'c':
count = atoi(optarg);
max_count = atoi(optarg);
continue;
case 'd':
debug_level = atoi(optarg);
@ -344,10 +344,10 @@ static int extract_history(sw_collector_db_t *db)
}
else if (match("End-Date", &cmd))
{
/* Process 'count' events at a time */
if (count > 0 && eid - last_eid == count)
/* Process 'max_count' events at a time */
if (max_count > 0 && eid - last_eid == max_count)
{
fprintf(stderr, "added %d events\n", count);
fprintf(stderr, "added %d events\n", max_count);
goto end;
}
}