Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perlwrap.pm

    r42947f1 r18fb3d4f  
    2121};
    2222
    23 use lib(get_data_dir()."/lib");
    24 use lib($ENV{HOME}."/.owl/lib");
    25 
     23use lib(get_data_dir() . "/lib");
     24use lib(get_config_dir() . "/lib");
     25
     26# perlconfig.c will set this to the value of the -c command-line
     27# switch, if present.
    2628our $configfile;
    2729
     
    520522    if ( $m->is_loginout) {
    521523        return format_login($m);
    522     } elsif($m->is_ping) {
     524    } elsif($m->is_ping && $m->is_personal) {
    523525        return ( "\@b(PING) from \@b(" . $m->pretty_sender . ")\n" );
    524526    } elsif($m->is_admin) {
     
    568570    }
    569571
     572    if($m->opcode) {
     573        $header .= " [" . $m->opcode . "]";
     574    }
    570575    $header .= "  " . time_hhmm($m);
    571576    my $sender = $m->long_sender;
Note: See TracChangeset for help on using the changeset viewer.