Skip to content

Commit

Permalink
(install_handler): Use access, not __access.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Jan 12, 2001
1 parent a7cdbcb commit f102c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sysdeps/generic/segfault.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit f102c08

Please sign in to comment.