From 4eb91c7afeca67d56caa365352fb362ec7bfa9d3 Mon Sep 17 00:00:00 2001 From: jl777 Date: Sat, 19 Nov 2016 15:11:44 -0300 Subject: [PATCH] test --- src/komodo_utils.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/komodo_utils.h b/src/komodo_utils.h index e0e7ede32..3a9cc0d23 100644 --- a/src/komodo_utils.h +++ b/src/komodo_utils.h @@ -1265,7 +1265,7 @@ void komodo_statefname(char *fname,char *symbol) { int32_t n,len; sprintf(fname,"%s",GetDataDir(false).string().c_str()); - if ( (n= (int32_t)strlen(symbol)) != 0 ) + if ( (n= (int32_t)strlen(ASSETCHAINS_SYMBOL)) != 0 ) { len = (int32_t)strlen(fname); if ( strcmp(symbol,&fname[len - n]) == 0 ) @@ -1280,6 +1280,7 @@ void komodo_statefname(char *fname,char *symbol) return; } } + printf("statefname.(%s) -> (%s)\n",symbol,fname); #ifdef WIN32 strcat(fname,"\\"); #else