diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-08-22 16:03:26 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-08-22 16:03:26 +0200 |
commit | 6599b96752ddce0ce13b608faf64584109b0851c (patch) | |
tree | d37b979c8430c5b017eabe673602688f29a2e82d | |
parent | d2031cdff9527a5e8562b80dad0a92a6e3ce4931 (diff) |
use HOST_NAME_MAX for hostname
-rw-r--r-- | sfeed.c | 1 | ||||
-rw-r--r-- | sfeed_html.c | 1 | ||||
-rw-r--r-- | sfeed_plain.c | 1 | ||||
-rw-r--r-- | sfeed_web.c | 1 | ||||
-rw-r--r-- | util.h | 2 |
5 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,7 @@ #include <ctype.h> #include <err.h> #include <errno.h> +#include <limits.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> diff --git a/sfeed_html.c b/sfeed_html.c index 63e6ca6..04addcc 100644 --- a/sfeed_html.c +++ b/sfeed_html.c @@ -1,5 +1,6 @@ #include <ctype.h> #include <err.h> +#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/sfeed_plain.c b/sfeed_plain.c index 64c2b68..4954b35 100644 --- a/sfeed_plain.c +++ b/sfeed_plain.c @@ -1,5 +1,6 @@ #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 4ecbf0d..29cecfc 100644 --- a/sfeed_web.c +++ b/sfeed_web.c @@ -1,4 +1,5 @@ #include <ctype.h> +#include <limits.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> @@ -17,7 +17,7 @@ struct feed { /* uri */ struct uri { char proto[48]; - char host[255]; + char host[HOST_NAME_MAX]; char path[2048]; char port[6]; /* numeric port */ }; |