From 6eab51411982fc61c193caed388608c4f2bd25d1 Mon Sep 17 00:00:00 2001 From: "John (J5) Palmieri" Date: Tue, 22 Mar 2005 17:57:27 +0000 Subject: * tools/Makefile.am: Patch by Colin Walters that fixes distcheck * dbus/dbus-userdb.c, dbus/dbus-userdb-util.c: Add patch we have had in Red Hat packages for a while but for some reason never got merged upstream (_dbus_is_a_number): New checks if a string can be converted to a number and does the conversion if it can (_dbus_user_database_lookup): Add check to see if the given username is a udi. This allows udi's to be used instead of usernames in the config file. (_dbus_user_database_lookup_group): Add check to see if the given groupname is a gdi. This allows gdi's to be used instead of groupnames in the config file. --- dbus/dbus-userdb.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'dbus/dbus-userdb.h') diff --git a/dbus/dbus-userdb.h b/dbus/dbus-userdb.h index 316b99b7..7e033b41 100644 --- a/dbus/dbus-userdb.h +++ b/dbus/dbus-userdb.h @@ -106,6 +106,9 @@ dbus_bool_t _dbus_credentials_from_uid (dbus_uid_t user_id, dbus_bool_t _dbus_is_console_user (dbus_uid_t uid, DBusError *error); +dbus_bool_t _dbus_is_a_number (const DBusString *str, + unsigned long *num); + DBUS_END_DECLS -- cgit