summaryrefslogtreecommitdiffstats
path: root/isomd5sum
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2005-03-02 02:07:42 +0000
committerPeter Jones <pjones@redhat.com>2005-03-02 02:07:42 +0000
commit4472b1b64772d3778643ce886ad8d2fbef4f4835 (patch)
tree3888042a617e4aee71bc4da2b39e970a0b7c5699 /isomd5sum
parent730fce8abc94c82e46a50c08b5ed37ca19af126a (diff)
downloadanaconda-4472b1b64772d3778643ce886ad8d2fbef4f4835.tar.gz
anaconda-4472b1b64772d3778643ce886ad8d2fbef4f4835.tar.xz
anaconda-4472b1b64772d3778643ce886ad8d2fbef4f4835.zip
same type changes as in the other 2 copies of this...
Diffstat (limited to 'isomd5sum')
-rw-r--r--isomd5sum/libcheckisomd5.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/isomd5sum/libcheckisomd5.c b/isomd5sum/libcheckisomd5.c
index 7f0cb140f..12c14ae61 100644
--- a/isomd5sum/libcheckisomd5.c
+++ b/isomd5sum/libcheckisomd5.c
@@ -22,12 +22,12 @@
/* mediasum must be a preallocated buffer at least 33 bytes long */
static int parsepvd(int isofd, char *mediasum, int *skipsectors, long long *isosize, int *supported) {
unsigned char buf[2048];
- unsigned char buf2[512];
- unsigned char tmpbuf[512];
+ char buf2[512];
+ char tmpbuf[512];
int skipfnd, md5fnd, supportedfnd;
unsigned int loc;
long long offset;
- unsigned char *p;
+ char *p;
*supported = 0;
@@ -251,7 +251,7 @@ int mediaCheckFile(char *file, int quiet) {
int isofd;
int rc;
char *result;
- unsigned char mediasum[33], computedsum[33];
+ char mediasum[33], computedsum[33];
long long isosize;
int supported;