diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-11-20 00:39:57 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-11-20 00:39:57 +0000 |
commit | ea3787d819df14f8b451780a55d2bf76dc4030ef (patch) | |
tree | 4c1b42caa779db4c7137c6c3b2f124930bc7da25 /source/lib/substitute.c | |
parent | 9ead4fc3c3f8b83f03c762a4dab77a64aabccbf9 (diff) | |
download | samba-ea3787d819df14f8b451780a55d2bf76dc4030ef.tar.gz samba-ea3787d819df14f8b451780a55d2bf76dc4030ef.tar.xz samba-ea3787d819df14f8b451780a55d2bf76dc4030ef.zip |
more %U fixes for head
Diffstat (limited to 'source/lib/substitute.c')
-rw-r--r-- | source/lib/substitute.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/lib/substitute.c b/source/lib/substitute.c index 48d8e35dae5..2d1b2ab1fa1 100644 --- a/source/lib/substitute.c +++ b/source/lib/substitute.c @@ -68,6 +68,9 @@ void sub_set_smb_name(const char *name) { fstring tmp; + /* don't let anonymous logins override the name */ + if (! *name) return; + fstrcpy(tmp,name); trim_string(tmp," "," "); strlower(tmp); |