https://issues.shibboleth.net/jira/browse/SSPCPP-185
[shibboleth/cpp-xmltooling.git] / xmltooling / util / ReplayCache.cpp
index a3c8454..7d21b7a 100644 (file)
@@ -43,6 +43,6 @@ bool ReplayCache::check(const char* context, const char* s, time_t expires)
     // In storage already?
     if (m_storage->readString(context, s))
         return false;
-    m_storage->createText(context, s, "x", expires);
+    m_storage->createString(context, s, "x", expires);
     return true;
 }