summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-10-27 06:01:32 +0000
committerUlrich Drepper <drepper@redhat.com>2000-10-27 06:01:32 +0000
commit231d5da0ce92eb2d6763528e51f940142c243902 (patch)
tree46a838b069abc76f6e1cff8bdbbb021503ea0160
parent58363448b2cb724459f83723b02d99eb5bd8aed0 (diff)
Update.
* version.h (VERSION): Bump to 2.1.96.
-rw-r--r--ChangeLog2
-rw-r--r--posix/tst-chmod.c4
-rw-r--r--version.h2
3 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 60bc0dbc74..d55310e05e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2000-10-26 Ulrich Drepper <drepper@redhat.com>
+ * version.h (VERSION): Bump to 2.1.96.
+
* posix/tst-chmod.c (do_test): Account for people running the
tests as root.
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;
diff --git a/version.h b/version.h
index 3780a3cd4d..f69fb8b2ed 100644
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
/* This file just defines the current version number of libc. */
#define RELEASE "development"
-#define VERSION "2.1.95"
+#define VERSION "2.1.96"