Skip to content

Commit 0b8d8be

Browse files
committed
Set integer values to 32 bit (32 bit compat)
We don’t really need 64 for bitmask
1 parent 2b78436 commit 0b8d8be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ func parseConfiguration() {
7070
}
7171

7272
// set internal defaults
73-
configuration.Syslog.Filter.facility = 9223372036854775807
74-
configuration.Syslog.Filter.severity = 9223372036854775807
73+
configuration.Syslog.Filter.facility = 2147483647
74+
configuration.Syslog.Filter.severity = 2147483647
7575

7676
// init syslog configuration
7777
if configuration.Syslog.Path != "" {

0 commit comments

Comments
 (0)