summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--loader/registry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/registry.c b/loader/registry.c
index d049cbdf7f..85699f56dd 100644
--- a/loader/registry.c
+++ b/loader/registry.c
@@ -78,7 +78,7 @@ static void open_registry()
pwent=getpwuid(getuid());
pathname=(char*)malloc(strlen(pwent->pw_dir)+20);
strcpy(pathname, pwent->pw_dir);
- strcat(pathname, "/.registry");
+ strcat(pathname, "/.mplayer/registry");
fd=open(pathname, O_RDONLY);
free(pathname);
if(fd==-1)
@@ -125,7 +125,7 @@ static void save_registry()
pwent=getpwuid(getuid());
pathname=(char*)malloc(strlen(pwent->pw_dir)+20);
strcpy(pathname, pwent->pw_dir);
- strcat(pathname, "/.registry");
+ strcat(pathname, "/.mplayer/registry");
fd=open(pathname, O_WRONLY | O_CREAT, 00777);
free(pathname);
if(fd==-1)