From 1b9d0a62f59bb48c8deb2f0b98d9acdffdd9abe7 Mon Sep 17 00:00:00 2001 From: Zhang zhengguang Date: Thu, 17 Jul 2014 10:37:39 +0800 Subject: Imported Upstream version 1.24 --- scripts/openvpn-script.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/openvpn-script.c') diff --git a/scripts/openvpn-script.c b/scripts/openvpn-script.c index f37eab2f..e703c867 100644 --- a/scripts/openvpn-script.c +++ b/scripts/openvpn-script.c @@ -90,8 +90,8 @@ int main(int argc, char *argv[]) dbus_error_init(&error); conn = dbus_bus_get(DBUS_BUS_SYSTEM, &error); - if (conn == NULL) { - if (dbus_error_is_set(&error) == TRUE) { + if (!conn) { + if (dbus_error_is_set(&error)) { print("%s", error.message); dbus_error_free(&error); } else @@ -102,7 +102,7 @@ int main(int argc, char *argv[]) msg = dbus_message_new_method_call(busname, path, interface, "notify"); - if (msg == NULL) { + if (!msg) { dbus_connection_unref(conn); print("Failed to allocate method call"); goto out; @@ -126,7 +126,7 @@ int main(int argc, char *argv[]) dbus_message_iter_close_container(&iter, &dict); - if (dbus_connection_send(conn, msg, NULL) == FALSE) { + if (!dbus_connection_send(conn, msg, NULL)) { print("Failed to send message"); goto out; } -- cgit v1.2.3