(install_handler): Use access, not __access.

This commit is contained in:
Ulrich Drepper 2001-01-12 17:34:37 +00:00
parent a7cdbcb81b
commit f102c08f99
1 changed files with 1 additions and 1 deletions

View File

@ -237,6 +237,6 @@ install_handler (void)
/* Preserve the output file name if there is any given. */
name = getenv ("SEGFAULT_OUTPUT_NAME");
if (name != NULL && name[0] != '\0' && __access (name, R_OK | W_OK) == 0)
if (name != NULL && name[0] != '\0' && access (name, R_OK | W_OK) == 0)
fname = __strdup (name);
}