Fixed compiler warnings

This commit is contained in:
2024-06-10 10:41:49 -04:00
parent 21b3d4197a
commit c5ea4fc3e8
4 changed files with 4 additions and 4 deletions

View File

@ -84,7 +84,7 @@ void *CanRxListener::Run(void *arg)
if ( nread == 0 )
continue;
char timebuf[32];
char timebuf[100];
if ( Logging.IsLogging() )
{

View File

@ -97,7 +97,7 @@ void *CanTxGenerator::Run(void *arg)
struct tm tm;
gettimeofday( &tv, NULL );
gmtime_r( &tv.tv_sec, &tm );
char buf[32];
char buf[100];
sprintf( buf, "%4d/%2d/%2d-%2d:%2d:%2d.%03ld",
tm.tm_year+1900, tm.tm_mon, tm.tm_mday,
tm.tm_hour, tm.tm_min, tm.tm_sec,

View File

@ -37,7 +37,7 @@ typedef struct _uri_parts {
char pass[16];
char host[256];
char port[16];
char path[1204];
char path[1024];
int rate;
} uri_parts;

View File

@ -154,7 +154,7 @@ int uri_parse( const char *uri, uri_parts *parsed )
strncpy( parsed->port, port, sizeof(parsed->port) );
}
if ( path )
strncat( parsed->path, path, sizeof(parsed->path) );
strncat( parsed->path, path, sizeof(parsed->path)-1 );
return ret;
}