Update LibTeleinfo.cpp

error: ‘strlcpy’ was not declared in this scope and ist not a standard C function.
You might like to use strncpy.
This commit is contained in:
cedricAbonnel 2020-08-27 20:54:55 +02:00 committed by GitHub
parent 8bdba6f2a5
commit 7a0a67a396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -224,7 +224,7 @@ ValueList * TInfo::valueAdd(char * name, char * value, uint8_t checksum, uint8_t
// Do we have enought space to hold new value ?
if (strlen(me->value) >= lgvalue ) {
// Copy it
strlcpy(me->value, value , lgvalue + 1);
strncpy(me->value, value , lgvalue + 1);
me->checksum = checksum ;
// That's all
@ -427,7 +427,7 @@ char * TInfo::valueGet(char * name, char * value)
if (me->value) {
// copy to dest buffer
uint8_t lgvalue = strlen(me->value);
strlcpy(value, me->value , lgvalue + 1 );
strncpy(value, me->value , lgvalue + 1 );
return ( value );
}
}
@ -662,7 +662,7 @@ ValueList * TInfo::checkLine(char * pline)
return NULL;
// Get our own working copy
strlcpy( buff, pline, len+1);
strncpy( buff, pline, len+1);
p = &buff[0];
ptok = p; // for sure we start with token name