Merge pull request #6 from slsdetectorgroup/fix-typos

Fix typos
This commit is contained in:
Dhanya Thattil 2019-03-05 14:19:19 +01:00 committed by GitHub
commit 1803a5aecc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -759,7 +759,7 @@ int slsReceiverTCPIPInterface::setup_udp(){
}
else {
strcpy(retvals,temp.c_str());
FILE_LOG(logINFO) << "Reciever MAC Address: " << retvals;
FILE_LOG(logINFO) << "Receiver MAC Address: " << retvals;
}
}
}
@ -983,7 +983,7 @@ int slsReceiverTCPIPInterface::start_receiver(){
sprintf(mess,"Cannot start Receiver as it is in %s state\n",runStatusType(s).c_str());
FILE_LOG(logERROR) << mess;
}else {
FILE_LOG(logDEBUG1) << "Starting Reciever";
FILE_LOG(logDEBUG1) << "Starting Receiver";
ret = receiver->startReceiver(mess);
if (ret == FAIL) {
FILE_LOG(logERROR) << mess;
@ -1009,7 +1009,7 @@ int slsReceiverTCPIPInterface::stop_receiver(){
// verify if receiver is unlocked
if (interface->Server_VerifyLock(ret, mess, lockStatus) == OK) {
if(receiver->getStatus() != IDLE) {
FILE_LOG(logDEBUG1) << "Stopping Reciever";
FILE_LOG(logDEBUG1) << "Stopping Receiver";
receiver->stopReceiver();
}
enum runStatus s = receiver->getStatus();