Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
	* version.h (VERSION): Bump to 2.1.96.
  • Loading branch information
Ulrich Drepper committed Oct 27, 2000
1 parent 5836344 commit 231d5da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 2 additions & 2 deletions posix/tst-chmod.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 231d5da

Please sign in to comment.