Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-07-02 05:42:41 +0400
committerChristopher Faylor <me@cgf.cx>2002-07-02 05:42:41 +0400
commit3557bbc1eab5a032d5d336afb9af2ea8a6c90fc8 (patch)
tree2b42b7f75956bfc37165c297f1ec314d015bad3b
parent74fcdaec2071bb23c090bc13b9cfd0c4765ed3bd (diff)
* syscalls.cc (seteuid32): Fix incorrect use of system_printf.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/syscalls.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 093e93e31..a9a3cac9d 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-01 Christopher Faylor <cgf@redhat.com>
+
+ * syscalls.cc (seteuid32): Fix incorrect use of system_printf.
+
2002-07-02 Christopher January <chris@atomice.net>
* autoload.cc (GetSecurityInfo): Define new autoload function.
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc
index 2b0bc82f1..1e837f013 100644
--- a/winsup/cygwin/syscalls.cc
+++ b/winsup/cygwin/syscalls.cc
@@ -2101,7 +2101,7 @@ seteuid32 (__uid32_t uid)
failed:
if (uid == myself->uid)
{
- system_printf ("special case, returning 0");
+ syscall_printf ("special case, returning 0");
return 0;
}
cygheap->user.token = sav_token;