summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
authorRuben Kerkhof <ruben@rubenkerkhof.com>2020-01-20 11:56:48 +0100
committerDarren Tucker <dtucker@dtucker.net>2020-01-21 10:47:29 +1100
commitb3f7009c9ffa5891283ed96e043001e09934a8d4 (patch)
treeac6155c2253a74dc7f2610b38deccd47a265c5e6 /session.c
parent0c428c0e991e2c4fabc48cf5d9b8f84c9412e0c3 (diff)
downloadopenssh-git-b3f7009c9ffa5891283ed96e043001e09934a8d4.tar.gz
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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/session.c b/session.c
index 80738b92..431ccd83 100644
--- a/session.c
+++ b/session.c
@@ -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)