1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

Fix bug 5398

Thanks to Jason Mader for sending the compiler output :-)

Volker
This commit is contained in:
Volker Lendecke 2008-04-19 13:08:14 +02:00
parent 825f78d9f1
commit 7a57c2da1a

View File

@ -249,6 +249,7 @@ static int expect(int master, char *issue, char *expected)
bool match = False;
for (attempts = 0; attempts < 2; attempts++) {
NTSTATUS status;
if (!strequal(issue, ".")) {
if (lp_passwd_chat_debug())
DEBUG(100, ("expect: sending [%s]\n", issue));
@ -269,7 +270,6 @@ static int expect(int master, char *issue, char *expected)
buffer[nread] = 0;
while (True) {
NTSTATUS status;
status = read_socket_with_timeout(
master, buffer + nread, 1,
sizeof(buffer) - nread - 1,
@ -305,8 +305,8 @@ static int expect(int master, char *issue, char *expected)
if (match)
break;
if (len < 0) {
DEBUG(2, ("expect: %s\n", strerror(errno)));
if (!NT_STATUS_IS_OK(status)) {
DEBUG(2, ("expect: %s\n", nt_errstr(status)));
return False;
}
}