From b2ec716534441d9dea42051ce8bf2c1df227685a Mon Sep 17 00:00:00 2001 From: Dan Everton Date: Tue, 30 May 2006 11:26:41 +0000 Subject: Use correct file mode when creating files. Fixes task 5452 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10020 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/lib/configfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/plugins/lib') diff --git a/apps/plugins/lib/configfile.c b/apps/plugins/lib/configfile.c index f2f0a39da0..d5b60bcfbc 100644 --- a/apps/plugins/lib/configfile.c +++ b/apps/plugins/lib/configfile.c @@ -34,7 +34,7 @@ int configfile_save(const char *filename, struct configdata *cfg, char buf[MAX_PATH]; cfg_rb->snprintf(buf, MAX_PATH, "/.rockbox/rocks/%s", filename); - fd = cfg_rb->creat(buf, 0); + fd = cfg_rb->creat(buf, O_WRONLY); if(fd < 0) return fd*10 - 1; -- cgit v1.2.3