summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-12-15 03:26:22 +0000
committerGerald Carter <jerry@samba.org>2003-12-15 03:26:22 +0000
commitb7e0a6f3ffda6df3bd086eeda01c5ed6acb8ff5d (patch)
tree2b3c8fe49b8b31886c1789705a58bad7420f3154 /examples
parent9eed49362eae131531eb6f01af7a85facb91af12 (diff)
downloadsamba-b7e0a6f3ffda6df3bd086eeda01c5ed6acb8ff5d.tar.gz
final changes for 3.0.1
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/misc/modify_samba_config.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/misc/modify_samba_config.pl b/examples/misc/modify_samba_config.pl
index eb997f9b0c8..ad958625d66 100755
--- a/examples/misc/modify_samba_config.pl
+++ b/examples/misc/modify_samba_config.pl
@@ -66,7 +66,7 @@ while (<CONFIGFILE>) {
## check for a param = value
if ($_ =~ /=/) {
- ($param, $value) = split (/=/, $_);
+ ($param, $value) = split (/=/, $_,2);
$param =~ s/./\l$&/g;
$param =~ s/\s+//g;
$value =~ s/^\s+//;