From: ivan Date: Wed, 17 Jan 2007 23:28:11 +0000 (+0000) Subject: fix crypted password bug cause by recent fix to not quote things on STDIN, yuck. X-Git-Tag: freeside_1_7_2~1^2~114 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=9a692cc4af760d384225014904874ffcf3f9e33f;p=freeside.git fix crypted password bug cause by recent fix to not quote things on STDIN, yuck. --- diff --git a/FS/FS/part_export/shellcommands.pm b/FS/FS/part_export/shellcommands.pm index 0545b5c59..b43033405 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"));