From 6c22d1f804ed99ecae591af6483a326e1c825560 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 16 May 2002 14:21:20 +0000 Subject: [PATCH] force all infostreet arguments to be string type, fixes: "0 as first character in password" problem. also see the Frontier::Client manpage --- FS/FS/part_export/infostreet.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FS/FS/part_export/infostreet.pm b/FS/FS/part_export/infostreet.pm index e86e82a66..2ce556339 100644 --- a/FS/FS/part_export/infostreet.pm +++ b/FS/FS/part_export/infostreet.pm @@ -63,7 +63,8 @@ sub infostreet_command { #subroutine, not method die $key_result{error} unless $key_result{success}; my $key = $key_result{data}; - my $result = $conn->call($method, $key, @args); + #my $result = $conn->call($method, $key, @args); + my $result = $conn->call($method, $key, map { $conn->string($_) } @args); my %result = _infostreet_parse($result); die $result{error} unless $result{success}; -- 2.11.0