On Fri, 27 Jul 2001, Greg Lontok wrote:

> hello,
>
> I recently changed a username/password check script to mod_perl, however
> when under mod_perl, I noticed that failed logins with the correct username
> and password combination show the password in the log as Apache=SCALAR(???),
> i.e. Apache=SCALAR(0x2d9f74). What is mod_perl doing here to my password
> parameter.

This is a basic Perl question.  "Apache=SCALAR(0xcafebabe)" means that the
thing you printed is scalar reference to an object, blessed into the
Apache class, and its memory address is 0xcafebabe.

-jwb

Reply via email to