From 057580c6b9b77fece532a02d3df7b5a5b1af1054 Mon Sep 17 00:00:00 2001 From: Dirk Koopman Date: Thu, 20 Jan 2022 19:03:31 +0000 Subject: [PATCH] fix show/node type --- cmd/show/node.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/show/node.pl b/cmd/show/node.pl index f8e71177..4434b690 100644 --- a/cmd/show/node.pl +++ b/cmd/show/node.pl @@ -28,7 +28,7 @@ if (@call == 0) { shift @call; my ($action, $key, $data) = (0,0,0); for ($action = DXUser::R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) { - if (iscallsign($key)) { + if (is_callsign($key)) { if ($data =~ /"sort":"[ACRSX]"/) { push @call, $key; } -- 2.34.1