Mercurial > mplayer.hg
changeset 9249:8546faeb0112
lstat->stat
found by Sebastian Kapfer <sebastian_kapfer@web.de>
author | arpi |
---|---|
date | Mon, 03 Feb 2003 09:33:22 +0000 |
parents | 41a21058e658 |
children | bb490ffeebf5 |
files | libmenu/menu_filesel.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmenu/menu_filesel.c Mon Feb 03 09:26:40 2003 +0000 +++ b/libmenu/menu_filesel.c Mon Feb 03 09:33:22 2003 +0000 @@ -94,7 +94,7 @@ int l = strlen(dir) + strlen(file); char s[l+2]; sprintf(s,"%s/%s",dir,file); - return lstat(s,st); + return stat(s,st); } static int compare(char **a, char **b){