config: don't reset connection info on disconnect.

If dbus is restarted, we try to connect again and this is difficult if the
busname and/or busobject is not set.
This commit is contained in:
Peter Hutterer 2008-01-26 09:39:54 +10:30
parent d232665223
commit 210eeef495

View File

@ -396,9 +396,6 @@ err_start:
static void
disconnect_hook(void *data)
{
struct connection_info *info = data;
reset_info(info);
}
#if 0
@ -440,4 +437,6 @@ void
config_dbus_fini(void)
{
config_dbus_core_remove_hook(&core_hook);
connection_data.busname[0] = '\0';
connection_data.busobject[0] = '\0';
}