Skip to content

Commit

Permalink
- Fix to initialize log_time_iso value in options.
Browse files Browse the repository at this point in the history
  • Loading branch information
wcawijngaards committed Sep 25, 2024
1 parent b0b93ed commit 740902a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- Fix #383: log timestamps in ISO8601 format with timezone.
This adds the option `log-time-iso: yes` that logs in ISO8601
format.
- Fix to initialize log_time_iso value in options.

23 August 2024: Wouter
- Merge #376: Point the user towards tcpdump for logging individual
Expand Down
1 change: 1 addition & 0 deletions options.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ nsd_options_create(region_type* region)
opt->logfile = 0;
opt->log_only_syslog = 0;
opt->log_time_ascii = 1;
opt->log_time_iso = 0;
opt->round_robin = 0; /* also packet.h::round_robin */
opt->minimal_responses = 0; /* also packet.h::minimal_responses */
opt->confine_to_zone = 0;
Expand Down

0 comments on commit 740902a

Please sign in to comment.