From ea7c582f03e17a0921006fa5cb5873e8faefb198 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Thu, 24 May 2007 18:15:24 +0000 Subject: * dbus/dbus-sysdeps-win.c (fill_win_user_info_homedir): not getting user info from a domain controller isn't an error, the computer may run in a non domain context. --- ChangeLog | 6 ++++++ dbus/dbus-sysdeps-win.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 82638f3d..3979984d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-05-25 Ralf Habacker + + * dbus/dbus-sysdeps-win.c (fill_win_user_info_homedir): not getting + user info from a domain controller isn't an error, the computer + may run in a non domain context. + 2007-05-25 Ralf Habacker * dbus/dbus-sysdeps-win.c (_dbus_full_duplex_pipe): fixed assertation. diff --git a/dbus/dbus-sysdeps-win.c b/dbus/dbus-sysdeps-win.c index 095fdd6f..3b9c8412 100644 --- a/dbus/dbus-sysdeps-win.c +++ b/dbus/dbus-sysdeps-win.c @@ -1338,7 +1338,7 @@ fill_win_user_info_homedir (wchar_t *wname, { char *dc_string = _dbus_win_utf16_to_utf8(dc,error); char *user_name = _dbus_win_utf16_to_utf8(wname,error); - _dbus_warn("NetUserGetInfo() for user '%s' failed with errorcode %d '%s', %s\n",user_name, ret,_dbus_lm_strerror(ret),dc_string); + _dbus_verbose("NetUserGetInfo() for user '%s' failed with errorcode %d '%s', %s\n",user_name, ret,_dbus_lm_strerror(ret),dc_string); dbus_free(user_name); dbus_free(dc_string); /* Not set, so use something random. */ -- cgit