Skip to content

Commit

Permalink
Corrected error in internalMSSTMWorkaround: isdigit -> isxdigit
Browse files Browse the repository at this point in the history
  • Loading branch information
mikalhart-intel committed Nov 26, 2014
1 parent d165e55 commit a3cfd7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IridiumSBD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
IridiumSBD - An Arduino library for Iridium SBD ("Short Burst Data") Communications
Suggested and generously supported by Rock Seven Location Technology
(http://rock7mobile.com), makers of the brilliant RockBLOCK satellite modem.
Copyright (C) 2013 Mikal Hart
Copyright (C) 2013-4 Mikal Hart
All rights reserved.
The latest version of this library is available at http://arduiniana.org.
Expand Down Expand Up @@ -400,7 +400,7 @@ int IridiumSBD::internalMSSTMWorkaround(bool &okToProceed)
return cancelled() ? ISBD_CANCELLED : ISBD_PROTOCOL_ERROR;

// Response buf now contains either an 8-digit number or the string "no network service"
okToProceed = isdigit(msstmResponseBuf[0]);
okToProceed = isxdigit(msstmResponseBuf[0]);
return ISBD_SUCCESS;
}

Expand Down

0 comments on commit a3cfd7f

Please sign in to comment.