fix bug in yaesu probing

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2848 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.11
Stéphane Fillod, F8CFE 2010-03-05 19:18:10 +00:00
rodzic f615a54f73
commit a90f9e84cd
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
/* /*
* hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
* *
* yaesu.c - (C) Stephane Fillod 2001-2009 * yaesu.c - (C) Stephane Fillod 2001-2010
* *
* This shared library provides an API for communicating * This shared library provides an API for communicating
* via serial interface to a Yaesu rig * via serial interface to a Yaesu rig
@ -167,7 +167,7 @@ DECLARE_PROBERIG_BACKEND(yaesu)
return RIG_MODEL_NONE; return RIG_MODEL_NONE;
} }
id1 = idbuf[3]; id1 = idbuf[3];
id1 = idbuf[4]; id2 = idbuf[4];
for (i=0; yaesu_id_list[i].model != RIG_MODEL_NONE; i++) { for (i=0; yaesu_id_list[i].model != RIG_MODEL_NONE; i++) {