mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-01-26 15:58:36 -05:00
A couple more unsigned char changes to silence compiler warnings
on signed-char systems (like Solaris).
This commit is contained in:
@@ -92,9 +92,9 @@ static void configLine(poptContext con, unsigned char * line)
|
||||
|
||||
int poptReadConfigFile(poptContext con, const char * fn)
|
||||
{
|
||||
const char * file, * chptr, * end;
|
||||
char * buf;
|
||||
/*@dependent@*/ char * dst;
|
||||
const unsigned char * file, * chptr, * end;
|
||||
unsigned char * buf;
|
||||
/*@dependent@*/ unsigned char * dst;
|
||||
int fd, rc;
|
||||
off_t fileLength;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user