diff options
author | Christopher Faylor <me@cgf.cx> | 2002-07-03 03:20:50 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-07-03 03:20:50 +0000 |
commit | 4558638014de7cf18593510922a1339a03c4cda0 (patch) | |
tree | e2ea92fbb7f85d425dea842834799286be1432ee /winsup/cygwin/sec_helper.cc | |
parent | 66eee32b8fec65cab4a0fb21895fdd39030b2afe (diff) | |
download | cygnal-4558638014de7cf18593510922a1339a03c4cda0.tar.gz cygnal-4558638014de7cf18593510922a1339a03c4cda0.tar.bz2 cygnal-4558638014de7cf18593510922a1339a03c4cda0.zip |
* cygheap.cc (init_cheap): Rearrange error message.
(cygheap_fixup_in_child): Ditto.
* dtable.cc: Remove if 0'ed code.
* fhandler_dsp.cc (fhandler_dev_dsp::open): Force binmode.
* sec_helper.cc (cygsid::get_id): Use system_printf for error message.
* tty.cc (tty::common_init): Ditto.
Diffstat (limited to 'winsup/cygwin/sec_helper.cc')
-rw-r--r-- | winsup/cygwin/sec_helper.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sec_helper.cc b/winsup/cygwin/sec_helper.cc index 5c7eb26d2..e7377b617 100644 --- a/winsup/cygwin/sec_helper.cc +++ b/winsup/cygwin/sec_helper.cc @@ -149,7 +149,7 @@ cygsid::get_id (BOOL search_grp, int *type) if (!IsValidSid (psid)) { __seterrno (); - small_printf ("IsValidSid failed with %E"); + system_printf ("IsValidSid failed with %E"); return -1; } |