On Wed, 2 Jun 2004, Ivars Jukams wrote:

> There is required field 'source' for dlr-storage = mysql, but this field is
> not documented. Does anybody know what data type is it? I made field
> 'source' varchar(255), but maybe there is better type for this field? I
> didn't tested it jet, maybe doesn't work.
>
> And one more question - what does this error mean:
>
> PANIC: gwlib/list.c:287: list_lock: Assertion `list != NULL' failed.
>
> I see it in kannel.log, when I stop kannel.

 It's probably supposed to be "list is not null" -- probably an obscure bug
 that wasn't caught, since it doesn't break anything...

 On 3.23.54:

    mysql> select count(*) from nuke_comments where pn_email != null;
    +----------+
    | count(*) |
    +----------+
    |        0 |
    +----------+
    1 row in set (0.00 sec)

    mysql> select count(*) from nuke_comments where pn_email is not null;
    +----------+
    | count(*) |
    +----------+
    |        3 |
    +----------+
    1 row in set (0.01 sec)

 Note the difference? :-)

Beckman
---------------------------------------------------------------------------
Peter Beckman                                                  Internet Guy
[EMAIL PROTECTED]                             http://www.purplecow.com/
---------------------------------------------------------------------------

Reply via email to