From 7203d5fb07be2d3ae006c2b65d0be1e6533e1273 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 23 Dec 2009 19:51:55 +0100 Subject: [PATCH 1/1] Use xstrdup() instead of xasprintf() to copy static strings. --- src/net_setup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/net_setup.c b/src/net_setup.c index cbf631f5..0718a8c5 100644 --- a/src/net_setup.c +++ b/src/net_setup.c @@ -218,8 +218,8 @@ bool setup_myself(void) { myself->connection = new_connection(); init_configuration(&myself->connection->config_tree); - xasprintf(&myself->hostname, "MYSELF"); - xasprintf(&myself->connection->hostname, "MYSELF"); + myself->hostname = xstrdup("MYSELF"); + myself->connection->hostname = xstrdup("MYSELF"); myself->connection->options = 0; myself->connection->protocol_version = PROT_CURRENT; @@ -247,7 +247,7 @@ bool setup_myself(void) { return false; if(!get_config_string(lookup_config(myself->connection->config_tree, "Port"), &myport)) - xasprintf(&myport, "655"); + myport = xstrdup("655"); /* Read in all the subnets specified in the host configuration file */ -- 2.20.1