From 60d6954b7560df62634b305fec65dffbc98ff0b8 Mon Sep 17 00:00:00 2001 From: "Bernhard R. Link" Date: Sun, 4 Oct 2009 14:25:05 +0200 Subject: samplesshd: allow overriding KEYS_FOLDER by compiler option Signed-off-by: Andreas Schneider --- samplesshd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/samplesshd.c b/samplesshd.c index fa97fabf..9cd9449b 100644 --- a/samplesshd.c +++ b/samplesshd.c @@ -25,11 +25,13 @@ MA 02111-1307, USA. */ #include #include #include +#ifndef KEYS_FOLDER #ifdef _WIN32 #define KEYS_FOLDER #else #define KEYS_FOLDER "/etc/ssh/" #endif +#endif static int auth_password(char *user, char *password){ if(strcmp(user,"aris")) -- cgit