This commit is contained in:
ajacoutot 2011-07-03 20:16:35 +00:00
parent 9553570a83
commit cb653b8a48
2 changed files with 3 additions and 12 deletions

View File

@ -1,11 +1,11 @@
# $OpenBSD: Makefile,v 1.8 2011/06/21 07:18:57 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.9 2011/07/03 20:16:35 ajacoutot Exp $
COMMENT= D-Bus interface for user account query and manipulation
DISTNAME= accountsservice-0.6.12
EXTRACT_SUFX= .tar.bz2
REVISION= 6
REVISION= 7
SHARED_LIBS += accountsservice 0.0 # 0.0

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-src_daemon_c,v 1.5 2011/06/17 14:27:55 ajacoutot Exp $
$OpenBSD: patch-src_daemon_c,v 1.6 2011/07/03 20:16:35 ajacoutot Exp $
--- src/daemon.c.orig Thu May 19 05:39:12 2011
+++ src/daemon.c Fri Jun 17 16:25:09 2011
@@ -50,11 +50,14 @@
@ -90,15 +90,6 @@ $OpenBSD: patch-src_daemon_c,v 1.5 2011/06/17 14:27:55 ajacoutot Exp $
static void
daemon_init (Daemon *daemon)
@@ -1042,7 +1067,7 @@ finish_list_cached_users (gpointer user_data)
while (g_hash_table_iter_next (&iter, (gpointer *)&name, (gpointer *)&user)) {
uid = user_local_get_uid (user);
if (!daemon_local_user_is_excluded (data->daemon, name, uid)) {
- g_debug ("user %s %ld not excluded\n", name, uid);
+ g_debug ("user %s %ld not excluded\n", name, (long int)uid);
g_ptr_array_add (object_paths, g_strdup (user_local_get_object_path (user)));
}
}
@@ -1119,7 +1144,12 @@ daemon_create_user_authorized_cb (Daemon
CreateUserData *cd = data;
User *user;