X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/0f00dc4c8eb47e67bc0f148c2dd109f73a451e0a..9ecb2f812e425eeec4641a0f12a2d1670141569a:/progs/catsign.c diff --git a/progs/catsign.c b/progs/catsign.c index 48f8fcb..7db8aa2 100644 --- a/progs/catsign.c +++ b/progs/catsign.c @@ -394,7 +394,6 @@ static void sigtobuffer(sigmsg *s, buf *b, int hashp) static void dohash(ghash *h, const void *p, size_t n) { -/* trace_block(1, "hashing", p, n); */ GH_HASH(h, p, n); } @@ -437,7 +436,7 @@ static void sig_writesig(enc *e, sigmsg *s) { chunk_write(e, s->sig.buf, s->sig.len); } static void diechoke(const char *m, void *p) - { die(EXIT_FAILURE, "%s%s%s", p, p ? ": " : "", m); } + { die(EXIT_FAILURE, "%s%s%s", (const char *)p, p ? ": " : "", m); } static void sig_readheader(enc *e, sigmsg *s, void (*choke)(const char *, void *), void *p) @@ -536,7 +535,7 @@ static int sign(int argc, char *argv[]) ofp = stdout; else if ((ofp = fopen(of, eo->wmode)) == 0) { die(EXIT_FAILURE, "couldn't open file `%s' for output: %s", - ofp, strerror(errno)); + of, strerror(errno)); } /* --- Start the work --- */ @@ -1220,7 +1219,6 @@ int main(int argc, char *argv[]) sub_init(); rand_noisesrc(RAND_GLOBAL, &noise_source); rand_seed(RAND_GLOBAL, 160); -/* trace_on(stderr, 1); */ /* --- Parse options --- */