diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2014-02-11 17:45:09 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2014-02-11 17:45:09 +0000 |
commit | f8efc42f666a09de838d930a167ea32e81d899e0 (patch) | |
tree | 132627546e5c81fd9e0d90651f6fe5206018fd72 /winsup/cygwin/uinfo.cc | |
parent | 7fa5cbbfcdb4ff064ccc17d7fb514d3ff1ad8d2d (diff) | |
download | cygnal-f8efc42f666a09de838d930a167ea32e81d899e0.tar.gz cygnal-f8efc42f666a09de838d930a167ea32e81d899e0.tar.bz2 cygnal-f8efc42f666a09de838d930a167ea32e81d899e0.zip |
* ldap.cc (rediscover_thread): Give argument a useful name.
* miscfuncs.cc (NT_readline::init): It's a really bad idea trying to
print a pointer to a PUNICODE_STRING as PUNICODE_STRING. Fix it.
* uinfo.cc (cygheap_domain_info::init): Print status codes as hex
values in debug output.
Diffstat (limited to 'winsup/cygwin/uinfo.cc')
-rw-r--r-- | winsup/cygwin/uinfo.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/uinfo.cc b/winsup/cygwin/uinfo.cc index 2bf10ac7f..38e222d92 100644 --- a/winsup/cygwin/uinfo.cc +++ b/winsup/cygwin/uinfo.cc @@ -726,7 +726,7 @@ cygheap_domain_info::init () (PVOID *) &pdom); if (status != STATUS_SUCCESS) { - system_printf ("LsaQueryInformationPolicy(Primary) %u", status); + system_printf ("LsaQueryInformationPolicy(Primary) %y", status); return false; } /* Copy primary domain info to cygheap. */ @@ -740,7 +740,7 @@ cygheap_domain_info::init () (PVOID *) &adom); if (status != STATUS_SUCCESS) { - system_printf ("LsaQueryInformationPolicy(Account) %u", status); + system_printf ("LsaQueryInformationPolicy(Account) %y", status); return false; } /* Copy account domain info to cygheap. If we're running on a DC the account |