roken: issuid always call rk_getauxval

Instead of calling getauxval(), always call rk_getauxval() to ensure consistent behavior within roken.
This commit is contained in:
Jeffrey Altman
2018-04-04 11:31:45 -04:00
parent 6aece8ea06
commit dcc880cf7c

View File

@@ -188,7 +188,7 @@ issuid(void)
* race.
*/
{
unsigned long p = getauxval(AT_EXECPATH);
unsigned long p = rk_getauxval(AT_EXECPATH);
struct stat st;
if (p != 0 && *(const char *)p == '/' &&