On Sun, 25 Jul 2004, Stas Bekman wrote:

> Randy Kobes wrote:
>
> > Index: Apache-Test/lib/Apache/TestSSLCA.pm
> > ===================================================================
> > RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestSSLCA.pm,v
> > retrieving revision 1.18
> > diff -u -r1.18 TestSSLCA.pm
> > --- Apache-Test/lib/Apache/TestSSLCA.pm     4 Mar 2004 05:51:31 -0000       1.18
> > +++ Apache-Test/lib/Apache/TestSSLCA.pm     25 Jul 2004 15:25:19 -0000
> > @@ -166,8 +166,8 @@
> >      my $cmd = "$openssl @_";
> >
> >      info $cmd;
> > -
> > -    unless (system($cmd) == 0) {
> > +    my @args = split ' ', $cmd;
> > +    unless (system(@args) == 0) {
> >          my $status = $? >> 8;
> >          die "system @_ failed (exit status=$status)";
> >      }
>
> I suppose that this was not a part of the patch :) And if it is it's a
> no go, since it'll break an argument with embedded spaces, like "this is
> a single argument" :)

Sorry about that - you're right, that shouldn't have been
included as part of the patch. I was trying to fix a problem
on Win32 when trying to include an ssl configuration.

-- 
best regards,
randy

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to