diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-10-04 23:29:17 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-10-04 23:44:51 +0200 |
commit | 7e6245aa708526949100478f5847704a7dd6eac2 (patch) | |
tree | 798f4274e58a4468f6eb068da2200a377e069031 | |
parent | f9d8ddb73c6297de4702cde6382db6378786d420 (diff) |
portability: dont use HOST_NAME_MAX, just use 256 as maximum
-rw-r--r-- | sfeed_html.c | 2 | ||||
-rw-r--r-- | sfeed_mbox.c | 3 | ||||
-rw-r--r-- | sfeed_plain.c | 1 | ||||
-rw-r--r-- | sfeed_web.c | 1 | ||||
-rw-r--r-- | util.h | 2 |
5 files changed, 2 insertions, 7 deletions
diff --git a/sfeed_html.c b/sfeed_html.c index 04addcc..e5f27b5 100644 --- a/sfeed_html.c +++ b/sfeed_html.c @@ -1,6 +1,4 @@ -#include <ctype.h> #include <err.h> -#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/sfeed_mbox.c b/sfeed_mbox.c index a093c46..0ee5bfd 100644 --- a/sfeed_mbox.c +++ b/sfeed_mbox.c @@ -2,7 +2,6 @@ #include <err.h> #include <inttypes.h> -#include <limits.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> @@ -79,7 +78,7 @@ printfeed(FILE *fp, const char *feedname) { struct tm tm; char *fields[FieldLast], timebuf[32], mtimebuf[32]; - char host[HOST_NAME_MAX + 1], *user; + char host[256], *user; time_t parsedtime; if (!(user = getenv("USER"))) diff --git a/sfeed_plain.c b/sfeed_plain.c index 92e1aa6..82bfcdd 100644 --- a/sfeed_plain.c +++ b/sfeed_plain.c @@ -1,6 +1,5 @@ #include <ctype.h> #include <err.h> -#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/sfeed_web.c b/sfeed_web.c index 95d60f0..89f0336 100644 --- a/sfeed_web.c +++ b/sfeed_web.c @@ -1,5 +1,4 @@ #include <ctype.h> -#include <limits.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> @@ -15,7 +15,7 @@ struct feed { /* uri */ struct uri { char proto[48]; - char host[HOST_NAME_MAX + 1]; + char host[256]; char path[2048]; char port[6]; /* numeric port */ }; |