Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 205130 | Differences between
and this patch

Collapse All | Expand All

(-)src/NetworkManager.c.orig (-2 / +2 lines)
Lines 339-345 Link Here
339
{
339
{
340
	DBusError		err;
340
	DBusError		err;
341
	DBusMessage *	reply = NULL;
341
	DBusMessage *	reply = NULL;
342
	guint32			status;
342
	gint32			status;
343
343
344
	g_return_if_fail (pcall != NULL);
344
	g_return_if_fail (pcall != NULL);
345
	g_return_if_fail (data != NULL);
345
	g_return_if_fail (data != NULL);
Lines 358-364 Link Here
358
		goto out;
358
		goto out;
359
	}
359
	}
360
360
361
	if (!dbus_message_get_args (reply, &err, DBUS_TYPE_UINT32, &status, DBUS_TYPE_INVALID)) {
361
	if (!dbus_message_get_args (reply, &err, DBUS_TYPE_INT32, &status, DBUS_TYPE_INVALID)) {
362
		nm_info ("Error getting killswitch power arguments: %s - %s", err.name, err.message);
362
		nm_info ("Error getting killswitch power arguments: %s - %s", err.name, err.message);
363
		dbus_error_free (&err);
363
		dbus_error_free (&err);
364
		goto out;
364
		goto out;

Return to bug 205130