# HG changeset patch # User ben # Date 1197156068 0 # Node ID 949e15337e50cc983ccddd80eba1c36ba6169d3d # Parent e91e3944c07dfa6c93371f8646ef4c8449b42377 identifiers starting with an underscore are reserved by the C standard diff -r e91e3944c07d -r 949e15337e50 libmenu/menu_filesel.c --- a/libmenu/menu_filesel.c Sat Dec 08 18:16:02 2007 +0000 +++ b/libmenu/menu_filesel.c Sat Dec 08 23:21:08 2007 +0000 @@ -180,7 +180,7 @@ } } -static int _open_dir(menu_t* menu,char* args) { +static int menu_open_dir(menu_t* menu,char* args) { char **namelist, **tp; struct dirent *dp; struct stat st; @@ -292,9 +292,9 @@ return 1; } static int open_dir(menu_t* menu,char* args) { - if (_open_dir(menu, args)) + if (menu_open_dir(menu, args)) return 1; - if (menu_chroot && _open_dir(menu, menu_chroot)) + if (menu_chroot && menu_open_dir(menu, menu_chroot)) return 1; return 0; }