| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 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/print/a2ps/files/ |
Upload File : |
--- lib/xgethostname.c.orig 1999-08-28 17:11:35 UTC
+++ lib/xgethostname.c
@@ -21,6 +21,7 @@
# include <config.h>
#endif
+#include <sys/param.h>
#include <sys/types.h>
#include <errno.h>
@@ -38,7 +39,7 @@ extern int errno;
int gethostname ();
#ifndef INITIAL_HOSTNAME_LENGTH
-# define INITIAL_HOSTNAME_LENGTH 34
+# define INITIAL_HOSTNAME_LENGTH MAXHOSTNAMELEN
#endif
char *
@@ -63,7 +64,7 @@ xgethostname ()
if (err == 0 && hostname[k] == '\0')
break;
#ifdef ENAMETOOLONG
- else if (err != 0 && errno != ENAMETOOLONG && errno != 0)
+ else if (err != 0 && errno != ENAMETOOLONG && errno != ENOMEM && errno != 0)
error (EXIT_FAILURE, errno, "gethostname");
#endif
size *= 2;