X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fconf.c;h=01c3fcd90873081b16030f2dcd4d979087bdda7c;hp=93c0fa3fe963537ce62f91a99b00fcb568a33e0a;hb=44e9d6a2872fac55f7eb701ba576ed9f39a22e08;hpb=54e19d34663cfe4af05e9e1dac94f76e39858f18 diff --git a/src/conf.c b/src/conf.c index 93c0fa3f..01c3fcd9 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.40 2001/01/17 01:30:05 zarq Exp $ + $Id: conf.c,v 1.9.4.42 2001/07/24 20:03:40 guus Exp $ */ #include "config.h" @@ -35,6 +35,7 @@ #include #include #include +#include #include #include /* for cp */ @@ -83,6 +84,7 @@ static internal_config_t hazahaza[] = { { "RestrictSubnets", config_restrictsubnets, TYPE_BOOL }, { "Subnet", config_subnet, TYPE_IP }, /* Use IPv4 subnets only for now */ { "TCPonly", config_tcponly, TYPE_BOOL }, + { "Mode", config_mode, TYPE_NAME }, { NULL, 0, 0 } }; @@ -494,7 +496,7 @@ FILE *ask_and_safe_open(const char* filename, const char* what, const char* mode if((fn = readline(stdin, NULL, NULL)) == NULL) { - fprintf(stderr, _("Error while reading stdin: %m\n")); + fprintf(stderr, _("Error while reading stdin: %s\n"), strerror(errno)); return NULL; } @@ -520,8 +522,8 @@ FILE *ask_and_safe_open(const char* filename, const char* what, const char* mode /* Open it first to keep the inode busy */ if((r = fopen(fn, mode)) == NULL) { - fprintf(stderr, _("Error opening file `%s': %m\n"), - fn); + fprintf(stderr, _("Error opening file `%s': %s\n"), + fn, strerror(errno)); free(fn); return NULL; }