fix a typo where we returned the sender tid, not the actual tid in GetOldTransactions

This commit is contained in:
Richard Hughes 2007-10-06 00:12:04 +01:00
parent 73416cc05f
commit 3d89e86e8e

View File

@ -367,7 +367,7 @@ pk_client_transaction_cb (DBusGProxy *proxy,
if (pk_transaction_id_equal (tid, client->priv->tid) == TRUE) {
role = pk_role_enum_from_text (role_text);
pk_debug ("emitting transaction %s, %s, %i, %s, %i, %s", old_tid, timespec, succeeded, role_text, duration, data);
g_signal_emit (client, signals [PK_CLIENT_TRANSACTION], 0, tid, timespec, succeeded, role, duration, data);
g_signal_emit (client, signals [PK_CLIENT_TRANSACTION], 0, old_tid, timespec, succeeded, role, duration, data);
}
}