X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhbuildsbr.c;h=fd6a974724f9bbd1f01d7505cf4f9ec3c590e43e;hb=025bb212470ef2945c9b7f57cb7fbfceb3e04e2c;hp=c349bf8beae3039b4b327aa695411f95979154eb;hpb=f931795fd8973c1edb40a26ecf87dbe27f7a6148;p=mmh diff --git a/uip/mhbuildsbr.c b/uip/mhbuildsbr.c index c349bf8..fd6a974 100644 --- a/uip/mhbuildsbr.c +++ b/uip/mhbuildsbr.c @@ -59,7 +59,6 @@ static char prefix[] = "----- =_aaaaaaaaaa"; /* mhmisc.c */ -int make_intermediates (char *); void content_error (char *, CT, char *, ...); /* mhcachesbr.c */ @@ -1603,13 +1602,14 @@ calculate_digest (CT ct, int asciiP) unsigned char *dp; unsigned char digest[16]; unsigned char outbuf[25]; - FILE *in; MD5_CTX mdContext; CE ce = ct->c_cefile; + char *infilename = ce->ce_file ? ce->ce_file : ct->c_file; + FILE *in; /* open content */ - if ((in = fopen (ce->ce_file, "r")) == NULL) - adios (ce->ce_file, "unable to open for reading"); + if ((in = fopen (infilename, "r")) == NULL) + adios (infilename, "unable to open for reading"); /* Initialize md5 context */ MD5Init (&mdContext);