[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Tlf-devel] wpx bug report
From: |
Joop Stakenborg |
Subject: |
Re: [Tlf-devel] wpx bug report |
Date: |
Tue, 01 Jun 2004 18:47:38 +0200 |
User-agent: |
Mozilla Thunderbird 0.6 (X11/20040528) |
Federico J. Baldi LU4HKN wrote:
* When writing a note it says "node" not "note".
This is correct, node comes from "THISNODE=<A...H>" in logcfg.dat (see
man tlf). If you add "THISNODE=A" to logcfg.dat and enter a note saying
"this is a note" after QSO 6, the note will say:
; Node A, 6 : this is a note
If there is no THISNODE in logcfg.dat, the line will be:
; Node this is a note
Because THISNODE equals '\0' (there is no default for THISNODE).
The attached patch against tlf-0.9.18 will call your node 'X' by
default. Apply the patch as follows:
cd tlf-0.9.18
patch -p1 < /path/to/patch.node
Maybe Rein has a better solution.
73, fede.
Regards,
Joop PG4I
diff -u -r tlf-0.9.18/src/parse_logcfg.c tlf-0.9.18.fixed/src/parse_logcfg.c
--- tlf-0.9.18/src/parse_logcfg.c 2004-05-05 15:08:32.000000000 +0200
+++ tlf-0.9.18.fixed/src/parse_logcfg.c 2004-06-01 18:36:51.000000000 +0200
@@ -41,6 +41,7 @@
extern int packetinterface;
extern int tncport;
extern int shortqsonr;
+extern char thisnode;
int exist_in_multi_list();
@@ -67,7 +68,8 @@
nodes=0;
node=0;
shortqsonr = 0;
-
+ thisnode = 'X';
+
strcpy(defltconf, PACKAGE_DATA_DIR);
strcat(defltconf, "/logcfg.dat");
@@ -168,7 +170,6 @@
extern char netkeyer_hostaddress[] ;
extern char bc_hostaddress[MAXNODES][16];
extern int lan_active;
- extern char thisnode;
extern char nodes;
extern int node;
extern int cqwwm2;
- Re: [Tlf-devel] wpx bug report,
Joop Stakenborg <=