diff --git a/NEWS b/NEWS index b28bbe40..dd69166e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +procps-ng-NEXT +---------------- + * watch: define HOST_NAME_MAX where not defined Debian #830734 + procps-ng-3.3.12 ---------------- * libprocps API 6:0:0 diff --git a/watch.c b/watch.c index 24defcf1..69c8fc80 100644 --- a/watch.c +++ b/watch.c @@ -62,6 +62,10 @@ # define isprint(x) ( (x>=' '&&x<='~') || (x>=0xa0) ) #endif +#ifndef HOST_NAME_MAX +#define HOST_NAME_MAX 64 +#endif + /* Boolean command line options */ static int flags; #define WATCH_DIFF (1 << 1)