daemon: default to 256 for HOST_NAME_MAX if it is not defined
[gitweb.git] / daemon.c
index 5335d212c32a82b10483b10866f361f5c5a5bc85..fc3951cf759a602d705b8d7a486294e2ab8f67ee 100644 (file)
--- a/daemon.c
+++ b/daemon.c
 #include "exec_cmd.h"
 #include "interpolate.h"
 
+#ifndef HOST_NAME_MAX
+#define HOST_NAME_MAX 256
+#endif
+
 static int log_syslog;
 static int verbose;
 static int reuseaddr;