diff options
author | Damien Miller <djm@mindrot.org> | 2024-09-25 03:15:45 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2024-09-25 03:15:45 +0200 |
commit | 815a94e86a68c1000b8310cb47695cea9329516c (patch) | |
tree | c90cc43caf768cfc8357657c7c1718ee8e567ba2 | |
parent | build construct_utmp() when USE_BTMP is set (diff) | |
download | openssh-815a94e86a68c1000b8310cb47695cea9329516c.tar.xz openssh-815a94e86a68c1000b8310cb47695cea9329516c.zip |
gss-serv.c needs sys/param.h
From Void Linux
-rw-r--r-- | gss-serv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gss-serv.c b/gss-serv.c index 00e3d118b..025a118f8 100644 --- a/gss-serv.c +++ b/gss-serv.c @@ -29,6 +29,7 @@ #ifdef GSSAPI #include <sys/types.h> +#include <sys/param.h> #include <stdarg.h> #include <string.h> |