Browse Source

hurd: Fix arbitrary error code

ELIBBAD is Linux-specific.
nsz/bug23293
Samuel Thibault 4 years ago
parent
commit
67ab66541d
  1. 2
      nss/nss_test_errno.c

2
nss/nss_test_errno.c

@ -28,7 +28,7 @@ static void __attribute__ ((constructor))
init (void)
{
/* An arbitrary error code which is otherwise not used. */
errno = ELIBBAD;
errno = -1009;
}
/* Lookup functions for pwd follow that do not return any data. */

Loading…
Cancel
Save