| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/security/snoopy/files/ |
Upload File : |
--- src/datasource/domain.c.orig 2020-12-17 13:03:54 UTC
+++ src/datasource/domain.c
@@ -44,7 +44,7 @@
/*
* Local defines
*/
-#define HOST_NAME_BUF_SIZE HOST_NAME_MAX + 2 // +1 for terminal \0 and +1 because we'll be adding a trailing dot
+#define HOST_NAME_BUF_SIZE _POSIX_HOST_NAME_MAX + 2 // +1 for terminal \0 and +1 because we'll be adding a trailing dot
#define HOSTS_PATH "/etc/hosts"
#define HOSTS_LINE_SIZE_MAX 1024
#define HOSTS_LINE_POS_MAX 1023
@@ -76,12 +76,12 @@ int snoopy_datasource_domain (char * const result, cha
* START: COPY FROM datasource/hostname
*/
/* Get my hostname first */
- retVal = gethostname(hostname, HOST_NAME_MAX);
+ retVal = gethostname(hostname, _POSIX_HOST_NAME_MAX);
if (0 != retVal) {
return snprintf(result, SNOOPY_DATASOURCE_MESSAGE_MAX_SIZE, "(error @ gethostname(): %d)", errno);
}
- // If hostname was something alien (longer than HOST_NAME_MAX), then the
+ // If hostname was something alien (longer than _POSIX_HOST_NAME_MAX), then the
// last character may not be NULL (the behavior is unspecified).
// Let's avoid any surprises and null-terminate at the end of this buffer.
hostname[HOST_NAME_BUF_SIZE-1] = '\0';