X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fconf.c;h=f5211521e85eb5b5836994dab1d2d1946cbc3d2a;hp=b6d2b0af835a05dafdf62da11ebf1afcce3d2c39;hb=b657f0519456d05bcea5742017165793f79e56df;hpb=5db596c6844169f1eb5f804b72abe99d067aaa5a diff --git a/src/conf.c b/src/conf.c index b6d2b0af..f5211521 100644 --- a/src/conf.c +++ b/src/conf.c @@ -19,31 +19,17 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: conf.c,v 1.9.4.65 2003/07/12 17:41:45 guus Exp $ + $Id: conf.c,v 1.9.4.67 2003/07/18 14:10:27 guus Exp $ */ -#include "config.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include /* for cp */ -#include +#include "system.h" +#include "avl_tree.h" #include "conf.h" -#include "netutl.h" /* for str2address */ #include "logger.h" - -#include "system.h" +#include "netutl.h" /* for str2address */ +#include "utils.h" /* for cp */ +#include "xalloc.h" avl_tree_t *config_tree; @@ -431,6 +417,7 @@ int read_server_config() int is_safe_path(const char *file) { +#if !(defined(HAVE_CYGWIN) || defined(HAVE_MINGW)) char *p; const char *f; char x; @@ -513,6 +500,7 @@ check2: logger(LOG_ERR, _("`%s' has unsecure permissions"), f); return 0; } +#endif return 1; }