comparison kk-data-provider.c @ 202:040658369850

Fix KK data provider setup
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Mon, 31 Mar 2014 17:03:37 +0200
parents 4b74b81e0c79
children d7f91b9fb515
comparison
equal deleted inserted replaced
201:f8118b90490e 202:040658369850
36 rv = FX_Recv(&resp, TIMEOUT); 36 rv = FX_Recv(&resp, TIMEOUT);
37 if (! rv) 37 if (! rv)
38 return rv; 38 return rv;
39 if (retry++ > MAXRETRY) 39 if (retry++ > MAXRETRY)
40 return 0; 40 return 0;
41 } while (strneq(resp, "7020", 4)); 41 } while (! strneq(resp, "7015", 4));
42 42
43 return rv; 43 return rv;
44 } 44 }
45 45
46 46