Skip to content

Commit 2e9632d

Browse files
mdblack98csete
authored andcommitted
Change vfoCurr to currVFO
1 parent acf6061 commit 2e9632d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/gtk-rig-ctrl.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2304,15 +2304,15 @@ static gboolean get_ptt(GtkRigCtrl * ctrl, gint sock)
23042304
{
23052305
/* send command get_ptt (t) */
23062306
if (ctrl->conf->vfo_opt)
2307-
buff = g_strdup_printf("t vfoCurr\x0a");
2307+
buff = g_strdup_printf("t currVFO\x0a");
23082308
else
23092309
buff = g_strdup_printf("t\x0a");
23102310
}
23112311
else
23122312
{
23132313
/* send command \get_dcd */
23142314
if (ctrl->conf->vfo_opt)
2315-
buff = g_strdup_printf("%c vfoCurr\x0a", 0x8b);
2315+
buff = g_strdup_printf("%c currVFO\x0a", 0x8b);
23162316
else
23172317
buff = g_strdup_printf("%c\x0a", 0x8b);
23182318
}
@@ -2341,14 +2341,14 @@ static gboolean set_ptt(GtkRigCtrl * ctrl, gint sock, gboolean ptt)
23412341
if (ptt == TRUE)
23422342
{
23432343
if (ctrl->conf->vfo_opt)
2344-
buff = g_strdup_printf("T vfoCurr 1\x0aq\x0a");
2344+
buff = g_strdup_printf("T currVFO 1\x0aq\x0a");
23452345
else
23462346
buff = g_strdup_printf("T 1\x0aq\x0a");
23472347
}
23482348
else
23492349
{
23502350
if (ctrl->conf->vfo_opt)
2351-
buff = g_strdup_printf("T vfoCurr 0\x0aq\x0a");
2351+
buff = g_strdup_printf("T currVFO 0\x0aq\x0a");
23522352
else
23532353
buff = g_strdup_printf("T 0\x0aq\x0a");
23542354
}

0 commit comments

Comments
 (0)