diff options
author | Jeremy Allison <jra@samba.org> | 2000-08-25 20:44:33 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-08-25 20:44:33 +0000 |
commit | ace6739f5e8b9cc3139c5ea1d42ab481856dd4c5 (patch) | |
tree | 7e814134c42bd639f8cc517947624463a2d50f44 /source3/script/addtosmbpass | |
parent | c79b92bbd8d455e98486b68a2a9e1f9cb5f7905f (diff) | |
download | samba-ace6739f5e8b9cc3139c5ea1d42ab481856dd4c5.tar.gz samba-ace6739f5e8b9cc3139c5ea1d42ab481856dd4c5.tar.bz2 samba-ace6739f5e8b9cc3139c5ea1d42ab481856dd4c5.zip |
vfs write data fix. Fix for name matching in addtosmbpass
Jeremy.
(This used to be commit 85738b7ee1ea6d88999d6aedc51a2daf545cb8b8)
Diffstat (limited to 'source3/script/addtosmbpass')
-rw-r--r-- | source3/script/addtosmbpass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/addtosmbpass b/source3/script/addtosmbpass index 84a7e6fac0..bc82851c52 100644 --- a/source3/script/addtosmbpass +++ b/source3/script/addtosmbpass @@ -41,7 +41,7 @@ BEGIN { { print $0; for(name in names) { - if($1 ~ name) { + if($1 == name) { delete names[name]; } } |