summaryrefslogtreecommitdiff
path: root/source4/libcli/dgram
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-11-03 09:42:18 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:44:12 +0100
commitc77b796a3f93c68e3fe05baafdad1e53f48e50d4 (patch)
treecaabf09a00420e918a3afde991ddb07178f8d0bf /source4/libcli/dgram
parent64fc66306bdc95b619dc3b8f2318e7d08125e6a5 (diff)
downloadsamba-c77b796a3f93c68e3fe05baafdad1e53f48e50d4.tar.gz
samba-c77b796a3f93c68e3fe05baafdad1e53f48e50d4.tar.bz2
samba-c77b796a3f93c68e3fe05baafdad1e53f48e50d4.zip
r25820: but still return the error...
(sorry, this should have been one commit) metze (This used to be commit 01c5ec7eb44956c1722d884bb97ce7730d4fc451)
Diffstat (limited to 'source4/libcli/dgram')
-rw-r--r--source4/libcli/dgram/browse.c1
-rw-r--r--source4/libcli/dgram/netlogon.c1
-rw-r--r--source4/libcli/dgram/ntlogon.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/source4/libcli/dgram/browse.c b/source4/libcli/dgram/browse.c
index 9881aa4eae..3e78378732 100644
--- a/source4/libcli/dgram/browse.c
+++ b/source4/libcli/dgram/browse.c
@@ -104,6 +104,7 @@ NTSTATUS dgram_mailslot_browse_parse(struct dgram_mailslot_handler *dgmslot,
if (DEBUGLVL(10)) {
file_save("browse.dat", data.data, data.length);
}
+ return status;
}
return NT_STATUS_OK;
}
diff --git a/source4/libcli/dgram/netlogon.c b/source4/libcli/dgram/netlogon.c
index 2e5aa26d67..3a5510b408 100644
--- a/source4/libcli/dgram/netlogon.c
+++ b/source4/libcli/dgram/netlogon.c
@@ -115,6 +115,7 @@ NTSTATUS dgram_mailslot_netlogon_parse(struct dgram_mailslot_handler *dgmslot,
if (DEBUGLVL(10)) {
file_save("netlogon.dat", data.data, data.length);
}
+ return status;
}
return NT_STATUS_OK;
}
diff --git a/source4/libcli/dgram/ntlogon.c b/source4/libcli/dgram/ntlogon.c
index c62f99433a..a49f011bda 100644
--- a/source4/libcli/dgram/ntlogon.c
+++ b/source4/libcli/dgram/ntlogon.c
@@ -117,6 +117,7 @@ NTSTATUS dgram_mailslot_ntlogon_parse(struct dgram_mailslot_handler *dgmslot,
if (DEBUGLVL(10)) {
file_save("ntlogon.dat", data.data, data.length);
}
+ return status;
}
return NT_STATUS_OK;
}