From 23d422740b3b869d67df316556d359e12635fcf4 Mon Sep 17 00:00:00 2001 From: Christopher Aillon Date: Fri, 21 Oct 2005 22:04:30 +0000 Subject: [PATCH] 2005-10-21 Christopher Aillon * gnome/applet/applet-dbus-vpn.c: Get rid of spurious newlines in debug console output git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1066 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- ChangeLog | 5 +++++ gnome/applet/applet-dbus-vpn.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index f350e6192c..8e754289bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-21 Christopher Aillon + + * gnome/applet/applet-dbus-vpn.c: + Get rid of spurious newlines in debug console output + 2005-10-21 Christopher Aillon * src/backends/NetworkManagerGentoo.c: diff --git a/gnome/applet/applet-dbus-vpn.c b/gnome/applet/applet-dbus-vpn.c index 672c4c15f5..11d08f2683 100644 --- a/gnome/applet/applet-dbus-vpn.c +++ b/gnome/applet/applet-dbus-vpn.c @@ -282,7 +282,7 @@ void nmwa_dbus_vpn_activate_connection (DBusConnection *connection, const char * { GSList *i; - nm_info ("Activating VPN connection '%s'.\n", name); + nm_info ("Activating VPN connection '%s'.", name); dbus_message_iter_init_append (message, &iter); dbus_message_iter_append_basic (&iter, DBUS_TYPE_STRING, &name); dbus_message_iter_open_container (&iter, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING_AS_STRING, &iter_array); @@ -294,7 +294,7 @@ void nmwa_dbus_vpn_activate_connection (DBusConnection *connection, const char * dbus_connection_send (connection, message, NULL); } else - nm_warning ("nmwa_dbus_activate_vpn_connection(): Couldn't allocate the dbus message\n"); + nm_warning ("nmwa_dbus_activate_vpn_connection(): Couldn't allocate the dbus message"); } @@ -312,11 +312,11 @@ void nmwa_dbus_vpn_deactivate_connection (DBusConnection *connection) if ((message = dbus_message_new_method_call (NM_DBUS_SERVICE, NM_DBUS_PATH_VPN, NM_DBUS_INTERFACE_VPN, "deactivateVPNConnection"))) { - nm_info ("Deactivating the current VPN connection.\n"); + nm_info ("Deactivating the current VPN connection."); dbus_connection_send (connection, message, NULL); } else - nm_warning ("nmwa_dbus_activate_vpn_connection(): Couldn't allocate the dbus message\n"); + nm_warning ("nmwa_dbus_activate_vpn_connection(): Couldn't allocate the dbus message"); }