From b119507013bc4cdc19011f2b3e8e4e7e7a3bb9d9 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 14 Feb 1999 20:03:55 +0000 Subject: Update. 1999-02-14 Andreas Jaeger * stdio-common/Makefile (tests): tllformat added. * stdio-common/tllformat.c: New program, based on tiformat.c with examples from Franz Sirl . 1999-02-14 Andreas Schwab * posix/test-vfork.c: Fix exit status test. 1999-02-14 Andreas Jaeger * sysdeps/unix/sysv/linux/sa_len.c (__libc_sa_len): Add some missing cases. Reported by Craig Metz [PR libc/964]. 1999-02-14 Andreas Schwab --- posix/test-vfork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'posix') diff --git a/posix/test-vfork.c b/posix/test-vfork.c index 959dcb3..2abeb5a 100644 --- a/posix/test-vfork.c +++ b/posix/test-vfork.c @@ -29,7 +29,7 @@ main (void) error (1, errno, "vfork"); printf ("After vfork (parent)\n"); if (waitpid (0, &status, 0) != pid - || !WIFEXITED (status) || WEXITSTATUS (NR)) + || !WIFEXITED (status) || WEXITSTATUS (status) != NR) exit (1); exit (0); } -- cgit v1.1