From 6956532511ba3cfe94c5110cefd24aa37169c5e5 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 26 Oct 2009 09:58:51 -0700 Subject: [PATCH] auth: make ceph_crypto_key match CryptoKey --- src/include/ceph_fs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/ceph_fs.h b/src/include/ceph_fs.h index f3dbc9b96f42d..3200045ea1266 100644 --- a/src/include/ceph_fs.h +++ b/src/include/ceph_fs.h @@ -80,9 +80,9 @@ int ceph_file_layout_is_valid(const struct ceph_file_layout *layout); /* * An encryption key/secret. */ -struct ceph_secret { +struct ceph_crypto_key { __le16 type; - __le64 timestamp; + struct ceph_timespec created; __le16 len; char key[]; } __attribute__ ((packed)); -- 2.39.5