summaryrefslogtreecommitdiff
path: root/popt
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-01-28 00:04:57 +0000
committerWayne Davison <wayned@samba.org>2004-01-28 00:04:57 +0000
commitff3184ca1e6afba19d787fd60a355cccedccab88 (patch)
tree59d1eb2bceec99c06e566606fb630ab694b049d2 /popt
parent12865a9762edff60375dfe4fce4a39787bf45be8 (diff)
downloadrsync-ff3184ca1e6afba19d787fd60a355cccedccab88.tar.gz
A couple more unsigned char changes to silence compiler warnings
on signed-char systems (like Solaris).
Diffstat (limited to 'popt')
-rw-r--r--popt/poptconfig.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/popt/poptconfig.c b/popt/poptconfig.c
index 446e6e98..50235661 100644
--- a/popt/poptconfig.c
+++ b/popt/poptconfig.c
@@ -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;