X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FAccount.cpp;h=b93eff19ad5978f91628d4885a43c70a879c31be;hb=8a6a4b71914b97fb154abdceef4db768633e71df;hp=11483f89c2eb39ec7a40bd2a503d3cdfe66c786f;hpb=2d54e57ffa32e0a02013d79be57b8a2f3bc8db05;p=lugaru.git diff --git a/Source/Account.cpp b/Source/Account.cpp index 11483f8..b93eff1 100644 --- a/Source/Account.cpp +++ b/Source/Account.cpp @@ -23,6 +23,7 @@ along with Lugaru. If not, see . #include #include "MacCompatibility.h" #include "string.h" +#include using namespace std; @@ -114,8 +115,9 @@ Account* Account::loadFile(string filename) FILE *tfile; int numaccounts; int accountactive; + errno = 0; - tfile = fopen(ConvertFileName(filename.c_str()), "rb" ); + tfile = fopen(filename.c_str(), "rb" ); if (tfile) { funpackf(tfile, "Bi", &numaccounts); @@ -185,7 +187,7 @@ Account* Account::loadFile(string filename) fclose(tfile); return get(accountactive); } else { - printf("filenotfound\n"); + perror(("Couldn't load users from " + filename).c_str()); return NULL; } } @@ -193,8 +195,9 @@ Account* Account::loadFile(string filename) void Account::saveFile(string filename, Account* accountactive) { FILE *tfile; + errno = 0; - tfile = fopen(ConvertFileName(filename.c_str(), "wb"), "wb" ); + tfile = fopen(filename.c_str(), "wb" ); if (tfile) { printf("writing %d accounts :\n", getNbAccounts()); fpackf(tfile, "Bi", getNbAccounts()); @@ -243,6 +246,8 @@ void Account::saveFile(string filename, Account* accountactive) } fclose(tfile); + } else { + perror(("Couldn't save users in " + filename).c_str()); } }