Helps to read and write the same type of data.
authorcantor <cantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Fri, 22 Jun 2007 18:33:44 +0000 (18:33 +0000)
committercantor <cantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Fri, 22 Jun 2007 18:33:44 +0000 (18:33 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-xmltooling/trunk@351 de75baf8-a10c-0410-a50a-987c0e22f00f

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;
 }