diff options
author | Günther Deschner <gd@samba.org> | 2007-09-28 01:02:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:31:02 -0500 |
commit | 314cb03db1ed7fefade39f7f15906e7fc6076382 (patch) | |
tree | b5472680161f4279e5ffc088737a72de8569013c | |
parent | 1f4e302dc2c8f88720fc9e98a0370fa9768d7262 (diff) | |
download | samba-314cb03db1ed7fefade39f7f15906e7fc6076382.tar.gz samba-314cb03db1ed7fefade39f7f15906e7fc6076382.tar.xz samba-314cb03db1ed7fefade39f7f15906e7fc6076382.zip |
r25396: Very obvious fix from Martin Zielinski.
Guenther
(This used to be commit 1f0d05807b7fe31cc4be59c7a2e850c9ec3e3864)
-rw-r--r-- | source3/lib/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 2d34371ab3..67c5f8d38f 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1277,6 +1277,7 @@ BOOL get_mydnsdomname(fstring my_domname) if (p) { p++; fstrcpy(my_domname, p); + return True; } return False; |