From: Guus Sliepen <guus@tinc-vpn.org>
Date: Mon, 1 Oct 2012 08:39:15 +0000 (+0200)
Subject: Remove abort() call that accidentily sneaked into commit dd1b69e.
X-Git-Tag: import-tinc-1.1~282
X-Git-Url: https://git.meshlink.io/?a=commitdiff_plain;h=3887e6dcb54494ee11798e721e274e06b0a5621a;p=meshlink

Remove abort() call that accidentily sneaked into commit dd1b69e.
---

diff --git a/src/net_setup.c b/src/net_setup.c
index 1c9a952d..2a67d432 100644
--- a/src/net_setup.c
+++ b/src/net_setup.c
@@ -586,7 +586,7 @@ static bool setup_myself(void) {
 	free(fname);
 
 	if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
-		abort(); //myport = xstrdup("655");
+		myport = xstrdup("655");
 
 	xasprintf(&myself->hostname, "MYSELF port %s", myport);
 	myself->connection->hostname = xstrdup(myself->hostname);