diff options
| author | Ralf Habacker <ralf.habacker@freenet.de> | 2007-05-24 18:15:24 +0000 | 
|---|---|---|
| committer | Ralf Habacker <ralf.habacker@freenet.de> | 2007-05-24 18:15:24 +0000 | 
| commit | ea7c582f03e17a0921006fa5cb5873e8faefb198 (patch) | |
| tree | 1502c7b9addc0cd4db5b0589096972aa0dbb9776 | |
| parent | 1e6025ef4ffc8ecde6b35104549132d890aa260a (diff) | |
* 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.
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | dbus/dbus-sysdeps-win.c | 2 | 
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@  2007-05-25  Ralf Habacker  <ralf.habacker@freenet.de> +	* 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  <ralf.habacker@freenet.de> +  	* dbus/dbus-sysdeps-win.c (_dbus_full_duplex_pipe): fixed assertation.  2007-05-24  Simon McVittie  <simon.mcvittie@collabora.co.uk> 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. */  | 
