From 29ddd0018939b7d24734ad8591e54464dde723e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Sj=C3=B6gren?= Date: Mon, 28 Jul 2003 21:11:05 +0000 Subject: [PATCH] Fix hostname corruption bug r3743 --- debian/changelog | 4 +++- netcfg.c | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9e01cc36..8f289153 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,8 +6,10 @@ netcfg (0.25) UNRELEASED; urgency=low - Move changelog to UTF-8, needed for Standards-Version 3.6.0 * ANdré Luís Lopes - Update Brazilian Portuguese (pt_BR) debconf template translations. + * Martin Sjögren + - Fix hostname corruption bug. - -- Alastair McKinstry Tue, 15 Jul 2003 13:39:12 +0100 + -- Martin Sjogren Mon, 28 Jul 2003 23:09:14 +0200 netcfg (0.24) unstable; urgency=low diff --git a/netcfg.c b/netcfg.c index 432776da..6ee2ce4e 100644 --- a/netcfg.c +++ b/netcfg.c @@ -361,7 +361,7 @@ netcfg_get_hostname(struct debconfclient *client, char **hostname) free(*hostname); *hostname = NULL; client->command(client, "set", - "netcfg/get_hostname", "debian"); + "netcfg/get_hostname", "debian", NULL); } } while (!*hostname);