diff options
-rw-r--r-- | source3/client/client.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index bdf6c50647..a348644d17 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1709,7 +1709,15 @@ static int do_allinfo(const char *name) if (!NT_STATUS_IS_OK(status)) { d_printf("%s getting alt name for %s\n", nt_errstr(status), name); - return false; + /* + * Ignore not supported, it does not hurt if we can't list + * alternate names. + */ + if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) { + altname[0] = '\0'; + } else { + return false; + } } d_printf("altname: %s\n", altname); |