Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / digester.cc
index 66e617de81d371c0d8eaf0196569920d5aac45fe..70c2babf5e4fd6d054a5db9a5f5594d2f49c3848 100644 (file)
@@ -19,7 +19,7 @@
 */
 
 #include "digester.h"
-#include "safe_stringstream.h"
+#include <locked_sstream.h>
 #include <nettle/md5.h>
 #include <iomanip>
 
@@ -57,7 +57,7 @@ Digester::get () const
                unsigned char digest[MD5_DIGEST_SIZE];
                md5_digest (&_context, MD5_DIGEST_SIZE, digest);
 
-               SafeStringStream s;
+               locked_stringstream s;
                for (int i = 0; i < MD5_DIGEST_SIZE; ++i) {
                        s << hex << setfill('0') << setw(2) << ((int) digest[i]);
                }