From 76d794eaf7c1664a47f4d0080fcd80e4a551740b Mon Sep 17 00:00:00 2001
From: Ivo Timmermans <ivo@lychnis.net>
Date: Sun, 22 Oct 2000 13:47:41 +0000
Subject: [PATCH] read_server_config: Check for result of read_config_file.

---
 src/conf.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/conf.c b/src/conf.c
index 72ef4081..641ce3f8 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.15 2000/10/16 16:33:29 guus Exp $
+    $Id: conf.c,v 1.9.4.16 2000/10/22 13:47:41 zarq Exp $
 */
 
 
@@ -214,6 +214,11 @@ int read_server_config()
 cp
   asprintf(&fname, "%s/tinc.conf", confbase);
   x = read_config_file(&config, fname);
+  if(x != 0)
+    {
+      fprintf(stderr, _("Failed to read `%s': %m\n"),
+	      fname);
+    }
   free(fname);
 cp
   return x;