X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fconf.c;h=1b729b2c15d10ff868e3835be56f05825cff073c;hp=3b1eb49c23c86cccb4407e160374a8af92782b36;hb=296171d115614d61480d896cd77898f5393c191d;hpb=fdc6a2f106315cd9ed22943d8c0bd279631e66b4 diff --git a/src/conf.c b/src/conf.c index 3b1eb49c..1b729b2c 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.7 2000/08/07 14:52:14 guus Exp $ + $Id: conf.c,v 1.9.4.10 2000/09/14 14:34:38 zarq Exp $ */ @@ -72,6 +72,9 @@ static internal_config_t hazahaza[] = { { "Hostnames", resolve_dns, TYPE_BOOL }, { "IndirectData", indirectdata, TYPE_BOOL }, { "TCPonly", tcponly, TYPE_BOOL }, + { "Interface", interface, TYPE_NAME }, + { "InterfaceIP", interfaceip, TYPE_IP }, + { "Name", tincname, TYPE_NAME }, { NULL, 0, 0 } }; @@ -212,7 +215,7 @@ read_config_file(const char *fname) cp if((fp = fopen (fname, "r")) == NULL) { - fprintf(stderr, _("Could not open %s: %s\n"), fname, sys_errlist[errno]); + fprintf(stderr, _("Could not open %s: %s\n"), fname, strerror(errno)); return 1; }