diff options
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | 2020-01-20 11:56:48 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2020-01-21 00:47:29 +0100 |
commit | b3f7009c9ffa5891283ed96e043001e09934a8d4 (patch) | |
tree | ac6155c2253a74dc7f2610b38deccd47a265c5e6 /session.c | |
parent | configure.ac: fix ldns test (diff) | |
download | openssh-b3f7009c9ffa5891283ed96e043001e09934a8d4.tar.xz openssh-b3f7009c9ffa5891283ed96e043001e09934a8d4.zip |
Fix missing prototype warning for copy_environment
This function is only used in this file, and only on Cygwin, so make
it static and hide it behind HAVE_CYGWIN. Prevents missing prototype
warning.
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -974,11 +974,13 @@ copy_environment_blacklist(char **source, char ***env, u_int *envsize, } } -void +#ifdef HAVE_CYGWIN +static void copy_environment(char **source, char ***env, u_int *envsize) { copy_environment_blacklist(source, env, envsize, NULL); } +#endif static char ** do_setup_env(struct ssh *ssh, Session *s, const char *shell) |