summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b7a8e04)
raw | patch | inline | side by side (parent: b7a8e04)
author | Pavel Rochnyack <pavel2000@ngs.ru> | |
Thu, 26 Oct 2017 05:17:49 +0000 (12:17 +0700) | ||
committer | Pavel Rochnyack <pavel2000@ngs.ru> | |
Thu, 26 Oct 2017 05:18:08 +0000 (12:18 +0700) |
Closes: #2506
src/daemon/collectd.c | patch | blob | history |
diff --git a/src/daemon/collectd.c b/src/daemon/collectd.c
index dd9b12f85669cfc2e490320308b3bd3b0adaf37e..9ec09347267f474c846d4807ceb065f9800ce493 100644 (file)
--- a/src/daemon/collectd.c
+++ b/src/daemon/collectd.c
}
static int init_hostname(void) {
- const char *str;
-
- struct addrinfo *ai_list;
- int status;
+ const char *str = global_option_get("Hostname");
+ if ((str != NULL) && (str[0] != 0)) {
+ hostname_set(str);
+ return 0;
+ }
long hostname_len = sysconf(_SC_HOST_NAME_MAX);
if (hostname_len == -1) {
}
char hostname[hostname_len];
- str = global_option_get("Hostname");
- if ((str != NULL) && (str[0] != 0)) {
- hostname_set(str);
- return 0;
- }
-
if (gethostname(hostname, hostname_len) != 0) {
fprintf(stderr, "`gethostname' failed and no "
"hostname was configured.\n");
return -1;
}
+ hostname_set(hostname);
+
str = global_option_get("FQDNLookup");
if (IS_FALSE(str))
return 0;
+ struct addrinfo *ai_list;
struct addrinfo ai_hints = {.ai_flags = AI_CANONNAME};
- status = getaddrinfo(hostname, NULL, &ai_hints, &ai_list);
+ int status = getaddrinfo(hostname, NULL, &ai_hints, &ai_list);
if (status != 0) {
ERROR("Looking up \"%s\" failed. You have set the "
"\"FQDNLookup\" option, but I cannot resolve "