Commit 950439fd authored by Federico G. Schwindt's avatar Federico G. Schwindt

Correct prototype

parent 8723d4fe
......@@ -102,7 +102,7 @@ void vtc_fatal(struct vtclog *vl, const char *, ...)
void vtc_dump(struct vtclog *vl, int lvl, const char *pfx,
const char *str, int len);
void vtc_hexdump(struct vtclog *vl, int lvl, const char *pfx,
const unsigned char *str, int len);
const char *str, int len);
int vtc_send_proxy(int fd, int version, const struct suckaddr *sac,
const struct suckaddr *sas);
......
......@@ -233,7 +233,7 @@ vtc_dump(struct vtclog *vl, int lvl, const char *pfx, const char *str, int len)
void
vtc_hexdump(struct vtclog *vl, int lvl, const char *pfx,
const unsigned char *str, int len)
const char *str, int len)
{
int nl = 1;
unsigned l;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment