* version.h (VERSION): Bump to 2.1.96.
This commit is contained in:
Ulrich Drepper 2000-10-27 06:01:32 +00:00
parent 58363448b2
commit 231d5da0ce
3 changed files with 5 additions and 3 deletions

View File

@ -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.

View File

@ -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;

View File

@ -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"