2003-04-25 Havoc Pennington <hp@redhat.com>
authorHavoc Pennington <hp@redhat.com>
Fri, 25 Apr 2003 20:48:45 +0000 (20:48 +0000)
committerHavoc Pennington <hp@redhat.com>
Fri, 25 Apr 2003 20:48:45 +0000 (20:48 +0000)
* dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
where we used >= 0 instead of != DBUS_UID_UNSET.

ChangeLog
dbus/dbus-transport.c

index 872305b..4448c57 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2003-04-25  Havoc Pennington  <hp@redhat.com>
 
+       * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
+       where we used >= 0 instead of != DBUS_UID_UNSET.
+
+2003-04-25  Havoc Pennington  <hp@redhat.com>
+
        * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
        were toggled without add/remove, fix from Anders Gustafsson
 
index f7b110a..e580b08 100644 (file)
@@ -932,7 +932,7 @@ _dbus_transport_get_unix_user (DBusTransport *transport,
   
   _dbus_auth_get_identity (transport->auth, &auth_identity);
 
-  if (auth_identity.uid >= 0)
+  if (auth_identity.uid != DBUS_UID_UNSET)
     {
       *uid = auth_identity.uid;
       return TRUE;