From 493266210f4f7627378161978968e719372ef03e Mon Sep 17 00:00:00 2001 From: Alexander Schmidt Date: Sun, 16 Mar 2014 21:58:13 +0100 Subject: [PATCH 1/1] Fixed unhashed fileid creation. --- configcache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configcache.cpp b/configcache.cpp index 491256c..59472e9 100644 --- a/configcache.cpp +++ b/configcache.cpp @@ -71,7 +71,7 @@ string configcache::getFileId(int actnequi, const bool& superextended, const boo if( superextended ) fileid << "_" << hash( paraString() ); else - fileid << "_" << paraString(); + fileid << paraString(); return fileid.str(); } -- 2.39.5