*** mysql.pm Thu Apr 27 22:43:58 2000 --- _mysql.pm Thu Apr 27 22:41:40 2000 *************** *** 243,250 **** if($NOTEDB::crypt_supported == 1) { eval { $T = pack("u", $cipher->encrypt($_[0])); ! } } chomp $T; return $T; } --- 243,253 ---- if($NOTEDB::crypt_supported == 1) { eval { $T = pack("u", $cipher->encrypt($_[0])); ! }; } + else { + $T = $_[0]; + } chomp $T; return $T; } *************** *** 255,263 **** if($NOTEDB::crypt_supported == 1) { eval { $T = $cipher->decrypt(unpack("u",$_[0])) ! } ! } ! return $T; } 1; # keep this! --- 258,269 ---- if($NOTEDB::crypt_supported == 1) { eval { $T = $cipher->decrypt(unpack("u",$_[0])) ! }; ! return $T; ! } ! else { ! return $_[0]; ! } } 1; # keep this!