Added callout hiddenline rotation and multiply INA
Altlinux build / build-alt (push) Successful in 2m36s
Archlinux build / build-arch (push) Successful in 3m49s
Archlinux build / make-test (push) Successful in 2m5s
Debian build / build-ubuntu (push) Successful in 3m53s

This commit is contained in:
zx
2025-04-26 21:23:31 +03:00
parent 72f46f357d
commit 0999c65b1a
17 changed files with 339 additions and 95 deletions
+3 -3
View File
@@ -70,7 +70,7 @@ void print_nodeinfo(const s_node *node)
printf("Phone : %s\n", node->phone);
printf("Sysop : %s\n", node->sysop);
printf("Location : %s\n", node->location);
printf("Speed : %lu\n", node->speed);
printf("Speed : %ld\n", node->speed);
printf("Flags : %s\n", node->flags);
if( node->worktime.num )
@@ -214,7 +214,7 @@ void print_calltable(s_faddr addr){
// Let's print this table
// begin with HOST itself
ln = 0;
if (nnode.host) {
if (nnode.host[0]) {
tmphost = nnode.host;
}
if (!nodelist_checkflag(nnode.flags, "IBN")) {
@@ -253,7 +253,7 @@ void print_calltable(s_faddr addr){
}
// Calltable for pstn
if (nnode.phone && check_phone(nnode.phone) ) {
if (nnode.phone[0] && check_phone(nnode.phone) ) {
tmpphone = nnode.phone;
ln +=1;
printf ("%5d. PSTN %s\n", ln, tmpphone);