Browse Source

Fix hostname corruption bug

r3743
master
Martin Sjögren 20 years ago
parent
commit
29ddd00189
  1. 4
      debian/changelog
  2. 2
      netcfg.c

4
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 <mckinstry@computer.org> Tue, 15 Jul 2003 13:39:12 +0100
-- Martin Sjogren <sjogren@debian.org> Mon, 28 Jul 2003 23:09:14 +0200
netcfg (0.24) unstable; urgency=low

2
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);

Loading…
Cancel
Save