The Samba-Bugzilla – Attachment 4316 Details for
Bug 6437
Unable to join IPv6-only ads domain
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to get more info.
look (text/plain), 1.10 KB, created by
Jeremy Allison
on 2009-06-18 18:47:36 UTC
(
hide
)
Description:
Patch to get more info.
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2009-06-18 18:47:36 UTC
Size:
1.10 KB
patch
obsolete
>diff --git a/source3/libads/cldap.c b/source3/libads/cldap.c >index d66e35c..ae087d9 100644 >--- a/source3/libads/cldap.c >+++ b/source3/libads/cldap.c >@@ -151,14 +151,19 @@ static int recv_cldap_netlogon(TALLOC_CTX *mem_ctx, > } > > if (ret == 0) { >- DEBUG(1,("no reply received to cldap netlogon\n")); >+ DEBUG(1,("no reply received to cldap netlogon " >+ "(select timeout %u sec)\n", >+ (unsigned int)timeout.tv_sec)); > data_blob_free(&blob); > return -1; > } > > ret = read(sock, blob.data, blob.length); > if (ret <= 0) { >- DEBUG(1,("no reply received to cldap netlogon\n")); >+ DEBUG(1,("no reply received to cldap netlogon " >+ "(ret = %d: Error = %s)\n", >+ ret, >+ ret == -1 ? strerror(errno) : "" )); > data_blob_free(&blob); > return -1; > } >@@ -251,8 +256,10 @@ bool ads_cldap_netlogon(TALLOC_CTX *mem_ctx, > > sock = open_udp_socket(server, LDAP_PORT ); > if (sock == -1) { >- DEBUG(2,("ads_cldap_netlogon: Failed to open udp socket to %s\n", >- server)); >+ DEBUG(2,("ads_cldap_netlogon: Failed to open udp socket to %s. " >+ "Error %s\n", >+ server, >+ strerror(errno) )); > return False; > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 6437
:
4240
|
4241
|
4242
|
4263
|
4310
|
4311
|
4312
| 4316 |
4322
|
4323
|
4324
|
4325
|
4326
|
4327
|
4328
|
4329
|
4330
|
4334