diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-10-27 06:01:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-10-27 06:01:32 +0000 |
commit | 231d5da0ce92eb2d6763528e51f940142c243902 (patch) | |
tree | 46a838b069abc76f6e1cff8bdbbb021503ea0160 /posix/tst-chmod.c | |
parent | 58363448b2cb724459f83723b02d99eb5bd8aed0 (diff) | |
download | glibc-231d5da0ce92eb2d6763528e51f940142c243902.tar glibc-231d5da0ce92eb2d6763528e51f940142c243902.tar.gz glibc-231d5da0ce92eb2d6763528e51f940142c243902.tar.bz2 glibc-231d5da0ce92eb2d6763528e51f940142c243902.zip |
Update.
* version.h (VERSION): Bump to 2.1.96.
Diffstat (limited to 'posix/tst-chmod.c')
-rw-r--r-- | posix/tst-chmod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/tst-chmod.c b/posix/tst-chmod.c index b031fbe6f4..70f4de0776 100644 --- a/posix/tst-chmod.c +++ b/posix/tst-chmod.c @@ -153,7 +153,7 @@ do_test (int argc, char *argv[]) } close (fd); } - if (errno != EACCES) + else if (errno != EACCES) { puts ("creat didn't generate correct errno value"); result = 1; @@ -177,7 +177,7 @@ do_test (int argc, char *argv[]) } close (fd); } - if (errno != EACCES) + else if (errno != EACCES) { puts ("creat didn't generate correct errno value"); result = 1; |