2005-04-27 Dan Williams <dcbw@redhat.com>

* Merge the applet and the info-daemon, and move the converged
                applet under gnome/applet
        * Move libnm_glib to gnome/libnm_glib
        * Convert most dbus calls between the applet, info-daemon, and NM
                into async calls
        * Fix a few things valgrind noticed
        * Make NM broadcast state more reliably


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@586 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams
2005-04-27 18:05:16 +00:00
parent b0a5d64b79
commit a5dd14c305
128 changed files with 6764 additions and 6558 deletions

View File

@@ -28,12 +28,12 @@
void status_printer (libnm_glib_ctx *ctx, gpointer user_data)
{
libnm_glib_status status;
libnm_glib_state state;
g_return_if_fail (ctx != NULL);
status = libnm_glib_get_network_status (ctx);
switch (status)
state = libnm_glib_get_network_state (ctx);
switch (state)
{
case LIBNM_NO_DBUS:
fprintf (stderr, "Status: No DBUS\n");