diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/ivymon | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -92,7 +92,7 @@ use vars qw/$VERSION $opt_help $opt_b $opt_bus $opt_history @opt_bind @opt_send $opt_undersize $opt_out $opt_loadingmode $opt_replayrepeat $opt_replaystartregexp $opt_replaystopregexp $opt_replaytimegranularity $opt_debug/; # **** VERSION *** -$VERSION = '1.16'; +$VERSION = '1.17'; # options initialisation $opt_loadingmode = 'replay-pause'; @@ -2409,7 +2409,8 @@ sub loadfileForReplay { my ($sender, $time, $message); while(<IN>) { chomp; - next if /^applications=/ or /^messages_number=/ or /^\s*$/ or /^(marker\d+)$/; + next if /^\#/ or /^applications=/ or /^messages_number=/ + or /^\s*$/ or /^(marker\d+)$/; ($sender, $time, $message) = split(/\s+/, $_, 3); if ($replay_time_granularity >= 1) { $time = int($time); |