diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rgw/rgw_swift.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rgw/rgw_swift.h b/src/rgw/rgw_swift.h index febc2675c27..cb00c40638a 100644 --- a/src/rgw/rgw_swift.h +++ b/src/rgw/rgw_swift.h @@ -32,7 +32,7 @@ public: bool expired() { uint64_t now = ceph_clock_now(NULL).sec(); - return (now < (uint64_t)expiration); + return (now >= (uint64_t)expiration); } }; |