diff options
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | 2020-01-20 12:24:51 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2020-01-21 10:37:25 +1100 |
commit | 5a9b9c82851b7bc219dc3a65962a80803c76c102 (patch) | |
tree | c1223208636215fc846151648eb35b2ae426bca4 | |
parent | 335dc93526942a650f6c69666b3f6ca44d0a2910 (diff) | |
download | openssh-git-5a9b9c82851b7bc219dc3a65962a80803c76c102.tar.gz |
sandbox-darwin.c: fix missing prototypes.
Include the right header just like the other sandbox files.
Fixes missing prototype warnings for ssh_sandbox_* functions.
-rw-r--r-- | sandbox-darwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox-darwin.c b/sandbox-darwin.c index a61de749..59b4d286 100644 --- a/sandbox-darwin.c +++ b/sandbox-darwin.c @@ -30,7 +30,7 @@ #include <unistd.h> #include "log.h" -#include "sandbox.h" +#include "ssh-sandbox.h" #include "monitor.h" #include "xmalloc.h" |