summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-11-08 17:58:55 -0800
committerJeremy Allison <jra@samba.org>2007-11-08 17:58:55 -0800
commit214bb0f11937843a268a897ab0337184ab36c2bc (patch)
treeb8967374d5e1f8d5653c964ecd4ff1064d8748fd /source3/lib
parentd40e47db4b5da41c8604a2058f3a0b0a82164f08 (diff)
downloadsamba-214bb0f11937843a268a897ab0337184ab36c2bc.tar.gz
samba-214bb0f11937843a268a897ab0337184ab36c2bc.tar.bz2
samba-214bb0f11937843a268a897ab0337184ab36c2bc.zip
Fix case where we have no dns domain name. Return a talloc of "".
Jeremy. (This used to be commit ab8934844a8ae08657769ce1787c32f14a7eb745)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 6e92a60238..287d2090ff 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -1227,6 +1227,8 @@ char *get_mydnsdomname(TALLOC_CTX *ctx)
if (p) {
p++;
my_domname = talloc_strdup(ctx, p);
+ } else {
+ my_domname = talloc_strdup(ctx, "");
}
return my_domname;