1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-14 12:23:52 +03:00

r8042: give better error message

metze
This commit is contained in:
Stefan Metzmacher
2005-07-01 08:14:21 +00:00
committed by Gerald (Jerry) Carter
parent 912fa269d2
commit 70118e9529

View File

@@ -393,7 +393,7 @@ struct messaging_context *messaging_init(TALLOC_CTX *mem_ctx, uint32_t server_id
status = socket_listen(msg->sock, msg->path, 0, 50, 0);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(0,("Unable to setup messaging listener for '%s'\n", msg->path));
DEBUG(0,("Unable to setup messaging listener for '%s':%s\n", msg->path, nt_errstr(status)));
talloc_free(msg);
return NULL;
}