diff options
author | Christopher Faylor <me@cgf.cx> | 2002-06-13 03:04:50 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-06-13 03:04:50 +0000 |
commit | 4863867ab9d6b417d23e22420e8f45264bc83724 (patch) | |
tree | 9dcf416c5bdcb0d16290780dd3956f3dbd40f164 /winsup/cygwin/uinfo.cc | |
parent | 12a2ef446296efe35cc6c433af728ddbc38f8a17 (diff) | |
download | cygnal-4863867ab9d6b417d23e22420e8f45264bc83724.tar.gz cygnal-4863867ab9d6b417d23e22420e8f45264bc83724.tar.bz2 cygnal-4863867ab9d6b417d23e22420e8f45264bc83724.zip |
* path.cc (chdir): Minor cleanup.
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 9bb0b69b2..1f28e92e4 100644 --- a/winsup/cygwin/uinfo.cc +++ b/winsup/cygwin/uinfo.cc @@ -71,8 +71,8 @@ internal_getlogin (cygheap_user &user) user.set_domain (buf); NetApiBufferFree (wui); } - if (!user.logsrv () && user.domain() && - get_logon_server(user.domain(), buf, NULL)) + if (!user.logsrv () && user.domain () && + get_logon_server (user.domain (), buf, NULL)) user.set_logsrv (buf + 2); debug_printf ("Domain: %s, Logon Server: %s, Windows Username: %s", user.domain (), user.logsrv (), user.name ()); |