From 6091c8e75e7e8409aadf62494e594784e0e1dd5e Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Sat, 21 Jul 2012 21:43:14 +0200 Subject: [PATCH] Fix error message displayed when cannot create config folder --- src/common/cfgfiles.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c index c2e4ee1d..522ab2ef 100644 --- a/src/common/cfgfiles.c +++ b/src/common/cfgfiles.c @@ -363,10 +363,22 @@ check_prefs_dir (void) { #ifdef WIN32 if (mkdir (dir) != 0) + { + if (portable_mode ()) + { + fe_message (_("Cannot create .\\config"), FE_MSG_ERROR); + } + else + { + fe_message (_("Cannot create %APPDATA%\\HexChat"), FE_MSG_ERROR); + } + } #else if (mkdir (dir, S_IRUSR | S_IWUSR | S_IXUSR) != 0) + { + fe_message (_("Cannot create ~/.config/hexchat"), FE_MSG_ERROR); + } #endif - fe_message (_("Cannot create ~/.xchat2"), FE_MSG_ERROR); } }