Package: tlf Version: 0.9.23-3 Severity: normal Tags: patch The CHANGE_RST flag in the configuration file is ignored. The attached patch modifies the parse_logfile.c file to allow the use of the CHANGE_RST flag as described in the tfl documentation.
-- System Information: Debian Release: 3.1 APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.11.3pao-1 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Versions of packages tlf depends on: ii hamlib3 1.2.4-1.1 Run-time library to control radio ii libc6 2.3.2.ds1-22 GNU C Library: Shared libraries an ii libncurses5 5.4-4 Shared libraries for terminal hand -- no debconf information
diff -ur tlf-0.9.23/src/parse_logcfg.c tlf-0.9.23.kb8pym/src/parse_logcfg.c --- tlf-0.9.23/src/parse_logcfg.c 2005-03-29 08:12:48.000000000 -0500 +++ tlf-0.9.23.kb8pym/src/parse_logcfg.c 2005-05-24 23:44:46.000000000 -0400 @@ -41,6 +41,7 @@ extern int packetinterface; extern int tncport; extern int shortqsonr; +extern int change_rst; int exist_in_multi_list(); @@ -390,7 +391,7 @@ "LOWBAND_DOUBLE", /* 145 */ "CLUSTER_LOG", "SERIAL+GRID4", - "", + "CHANGE_RST", "" }; @@ -1176,6 +1177,10 @@ serial_grid4_mult = 1; break; } + case 148 : { + change_rst = 1; + break; + } }