From e31d922592b3bb037daff487f0b68c719e7584d4 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 28 Feb 2007 17:25:29 +0000 Subject: r21593: give a more useful error, when we can't resolve a long name via broadcast of wins metze (This used to be commit 49591d699653e48f2e9540359e5b4ae97786511c) --- source4/libcli/resolve/nbtlist.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source4/libcli/resolve') diff --git a/source4/libcli/resolve/nbtlist.c b/source4/libcli/resolve/nbtlist.c index 58433d0a70..e8ea22a0dc 100644 --- a/source4/libcli/resolve/nbtlist.c +++ b/source4/libcli/resolve/nbtlist.c @@ -126,6 +126,15 @@ struct composite_context *resolve_name_nbtlist_send(TALLOC_CTX *mem_ctx, if (composite_nomem(state->name.scope, c)) return c; } + /* + * we can't push long names on the wire, + * so bail out here to give a useful error message + */ + if (strlen(state->name.name) > 15) { + composite_error(c, NT_STATUS_OBJECT_NAME_NOT_FOUND); + return c; + } + state->nbtsock = nbt_name_socket_init(state, event_ctx); if (composite_nomem(state->nbtsock, c)) return c; -- cgit