accountsservice: update to 0.6.30.

This commit is contained in:
Juan RP 2012-12-13 10:49:00 +01:00
parent 1d2c1f4e65
commit 82c095a66b
2 changed files with 3 additions and 29 deletions

View file

@ -1,26 +0,0 @@
From 4d5166d1833e42d81b854374aa6e73f83a67a70e Mon Sep 17 00:00:00 2001
From: Matthias Clasen <mclasen@redhat.com>
Date: Tue, 27 Nov 2012 23:30:45 +0000
Subject: Fix a crash on 32bit systems
The login-frequency property of the User interface is defined
as uint64 type. Therefore, when setting it with g_object_set,
a 64bit value is collected, and passing an int might lead to
bad things.
https://bugs.freedesktop.org/show_bug.cgi?id=57343
---
diff --git a/src/daemon.c b/src/daemon.c
index ed3a114..4d6f3ab 100644
--- src/daemon.c
+++ src/daemon.c
@@ -207,7 +207,7 @@ daemon_local_user_is_excluded (Daemon *daemon, const gchar *username, const gcha
#ifdef HAVE_UTMPX_H
typedef struct {
- int frequency;
+ guint64 frequency;
gint64 time;
GList *previous_logins;
} UserAccounting;
--
cgit v0.9.0.2-2-gbebe

View file

@ -1,7 +1,7 @@
# Template file for 'accountsservice'
pkgname=accountsservice
version=0.6.29
revision=2
version=0.6.30
revision=1
build_style=gnu-configure
configure_args="--disable-static
--with-systemdsystemunitdir=/usr/lib/systemd/system"
@ -13,7 +13,7 @@ maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://cgit.freedesktop.org/accountsservice/"
license="GPL-3"
distfiles="http://www.freedesktop.org/software/$pkgname/$pkgname-$version.tar.xz"
checksum=67d97e05a4c3c6f2f44a6d6cd3391ae6decce1296eb9ab918ac2899fab7f62cc
checksum=34400da6b95fbcb04a9b0202ec2805c5ffb04202d8469c17662830636b31093f
long_desc="
The accountsservice project provides a set of D-Bus interfaces for
querying and manipulating user account information and an implementation