summaryrefslogtreecommitdiffstats
path: root/src/output/dnscli.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/output/dnscli.c')
-rw-r--r--src/output/dnscli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/dnscli.c b/src/output/dnscli.c
index d7e0a14..ad25b1c 100644
--- a/src/output/dnscli.c
+++ b/src/output/dnscli.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2023, OARC, Inc.
+ * Copyright (c) 2018-2024 OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.
@@ -212,7 +212,7 @@ int output_dnscli_connect(output_dnscli_t* self, const char* host, const char* p
}
if (self->timeout.sec > 0 || self->timeout.nsec > 0) {
self->poll.fd = self->fd;
- self->poll_timeout = (self->timeout.sec * 1e3) + (self->timeout.nsec / 1e6); //NOSONAR
+ self->poll_timeout = (self->timeout.sec * 1e3) + (self->timeout.nsec / 1e6); // NOSONAR
if (!self->poll_timeout) {
self->poll_timeout = 1;
}