From 20a4933eb2b164ffc1533b7aef418b57d89adf19 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Sun, 11 Jul 2021 18:12:48 -0400 Subject: [PATCH] . --- src/hush_utils.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hush_utils.h b/src/hush_utils.h index 63b2d7710..72ed9bbba 100644 --- a/src/hush_utils.h +++ b/src/hush_utils.h @@ -1415,14 +1415,14 @@ void hush_configfile(char *symbol,uint16_t rpcport) #ifdef _WIN32 while ( fname[strlen(fname)-1] != '\\' ) fname[strlen(fname)-1] = 0; - strcat(fname,"komodo.conf"); + strcat(fname,"HUSH3.conf"); #else while ( fname[strlen(fname)-1] != '/' ) fname[strlen(fname)-1] = 0; #ifdef __APPLE__ - strcat(fname,"Komodo.conf"); + strcat(fname,"HUSH3.conf"); #else - strcat(fname,"komodo.conf"); + strcat(fname,"HUSH3.conf"); #endif #endif if ( (fp= fopen(fname,"rb")) != 0 ) @@ -1433,7 +1433,7 @@ void hush_configfile(char *symbol,uint16_t rpcport) fclose(fp); //printf("HUSH.(%s) -> userpass.(%s)\n",fname,HUSHUSERPASS); } else { - printf("couldnt open.(%s)\n",fname); + printf("could not open.(%s)\n",fname); } }