X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fconf.c;h=75d7ebec27fdfb5b414ebb2b32ba2d252cff431f;hp=09e72a5be5a3ccb44cd671e7e0dc3d42ec8a662b;hb=2a7f11c0e90f5f0465bbc3c75de715454066ff72;hpb=71f8124ea49f2a0e00e0cedbb1b76e49e9f1425d diff --git a/src/conf.c b/src/conf.c index 09e72a5b..75d7ebec 100644 --- a/src/conf.c +++ b/src/conf.c @@ -19,7 +19,7 @@ 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.63 2003/07/06 23:16:28 guus Exp $ + $Id: conf.c,v 1.9.4.64 2003/07/11 16:12:59 guus Exp $ */ #include "config.h" @@ -429,16 +429,6 @@ int read_server_config() return x; } -static int isadir(const char *f) -{ - struct stat s; - - if(stat(f, &s) < 0) - return 0; - else - return S_ISDIR(s.st_mode); -} - int is_safe_path(const char *file) { char *p;