diff options
author | Bradford Hovinen <hovinen@ximian.com> | 2001-07-17 19:22:51 +0000 |
---|---|---|
committer | Bradford Hovinen (Gdict maintainer) <hovinen@src.gnome.org> | 2001-07-17 19:22:51 +0000 |
commit | 7e8f457622f715fed4db152c3fef9e38c8cd7a95 (patch) | |
tree | 3106c56a92b04b51e2199291270bb964e6a59398 /archiver | |
parent | 31a81628c4d7313782893ceee01bc3c77bfbaa84 (diff) | |
download | gnome-control-center-7e8f457622f715fed4db152c3fef9e38c8cd7a95.tar.gz |
Remove
2001-07-17 Bradford Hovinen <hovinen@ximian.com>
* config-log.c (slave_apprise_data): Remove
Diffstat (limited to 'archiver')
-rw-r--r-- | archiver/ChangeLog | 2 | ||||
-rw-r--r-- | archiver/config-log.c | 21 |
2 files changed, 2 insertions, 21 deletions
diff --git a/archiver/ChangeLog b/archiver/ChangeLog index f661c7891..2e6b43a93 100644 --- a/archiver/ChangeLog +++ b/archiver/ChangeLog @@ -1,5 +1,7 @@ 2001-07-17 Bradford Hovinen <hovinen@ximian.com> + * config-log.c (slave_apprise_data): Remove + * archive.c (archive_unregister_location): (archive_get_location): strdup the string to remove compiler warnings diff --git a/archiver/config-log.c b/archiver/config-log.c index 855f1eb77..c0626ff2f 100644 --- a/archiver/config-log.c +++ b/archiver/config-log.c @@ -171,7 +171,6 @@ static void slave_destroy (Slave *slave); static gboolean slave_data_cb (GIOChannel *channel, GIOCondition condition, Slave *slave); -static void slave_apprise_data (Slave *slave); static void slave_broadcast_data (Slave *slave, ConfigLog *config_log); @@ -1399,26 +1398,6 @@ slave_broadcast_data (Slave *slave, ConfigLog *config_log) DEBUG_MSG ("Exit"); } -/* Sends all the new log entries to the given slave */ - -static void -slave_apprise_data (Slave *slave) -{ - GList *node; - ConfigLogEntry *current; - - g_return_if_fail (slave != NULL); - g_return_if_fail (IS_CONFIG_LOG (slave->config_log)); - - for (node = slave->config_log->p->log_data; - node != slave->config_log->p->first_old; - node = node->next) - { - current = node->data; - write_log (slave->buffer, current); - } -} - static IOBuffer * io_buffer_new (GIOChannel *channel, gboolean from_socket) { |