summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/shellcommands.pm
diff options
context:
space:
mode:
authorivan <ivan>2007-01-17 23:28:11 +0000
committerivan <ivan>2007-01-17 23:28:11 +0000
commit9a692cc4af760d384225014904874ffcf3f9e33f (patch)
tree97534f653cb4c751cbd3f51dfa12d94c467425f2 /FS/FS/part_export/shellcommands.pm
parentbe10e7a1421c13eec4b1bb3676eaf5c84344e601 (diff)
fix crypted password bug cause by recent fix to not quote things on STDIN, yuck.
Diffstat (limited to 'FS/FS/part_export/shellcommands.pm')
-rw-r--r--FS/FS/part_export/shellcommands.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_export/shellcommands.pm b/FS/FS/part_export/shellcommands.pm
index 0545b5c..b430334 100644
--- a/FS/FS/part_export/shellcommands.pm
+++ b/FS/FS/part_export/shellcommands.pm
@@ -356,7 +356,7 @@ sub _export_replace {
$new_first = shell_quote $new_first;
$new_last = shell_quote $new_last;
$new_finger = shell_quote $new_finger;
- $new_crypt_password = shell_quote $crypt_password;
+ $new_crypt_password = shell_quote $new_crypt_password;
my $command_string = eval(qq("$command"));