Fix stat check, reorder paths and add . (CWD)

This commit is contained in:
simon.kagstrom 2010-02-07 17:04:27 +00:00
parent ffe18cf372
commit 318a5fcd0d

View File

@ -163,7 +163,7 @@ const char *try_path(const char *path, const char *file)
const char *out = NULL;
sprintf(what, "%s/%s", path, file);
if (stat(what, &st) < 0)
if (stat(what, &st) == 0)
out = what;
return out;
@ -174,9 +174,10 @@ void Frodo::LoadFrodorc()
const char *paths[] = {
NULL, // Filled in below
NULL, // also filled in below
".",
"/apps/frodo", // Wii
"frodo",
"/usr/share/frodo/",
"/apps/frodo",
"/usr/share/frodo",
NULL,
};
const char *prefs_path = NULL;