$OpenBSD: patch-pkcs11_secret-store_gkm-secret-binary_c,v 1.2 2012/03/29 06:51:38 ajacoutot Exp $

On OpenBSD, time_t is an int.
https://bugzilla.gnome.org/show_bug.cgi?id=652565

--- pkcs11/secret-store/gkm-secret-binary.c.orig	Thu Mar  8 20:45:29 2012
+++ pkcs11/secret-store/gkm-secret-binary.c	Wed Mar 28 08:23:47 2012
@@ -73,8 +73,8 @@ typedef struct {
 	char *display_name;
 	const guchar *ptr_secret;
 	gsize n_secret;
-	time_t ctime;
-	time_t mtime;
+	long int ctime;
+	long int mtime;
 	GHashTable *attributes;
 	GList *acl;
 } ItemInfo;
@@ -851,7 +851,7 @@ gkm_secret_binary_read (GkmSecretCollection *collectio
 	guchar major, minor, crypto, hash;
 	guint32 flags;
 	guint32 lock_timeout;
-	time_t mtime, ctime;
+	long int mtime, ctime;
 	char *display_name;
 	guint32 tmp;
 	guint32 num_items;
