The OpenSSL engine passes a "const u_char *" to the callback but
authorreyk <reyk@openbsd.org>
Mon, 21 Apr 2014 16:08:47 +0000 (16:08 +0000)
committerreyk <reyk@openbsd.org>
Mon, 21 Apr 2014 16:08:47 +0000 (16:08 +0000)
commitcde94ae2de81e739533b11765104c05df4c1122e
treeac3079e91a4219673c52ec44efc26c2c1f90dab9
parentec5022a2538bbe827cdf0258da87220b0d83f260
The OpenSSL engine passes a "const u_char *" to the callback but
relayd's RSA privsep engine uses an iovec that expects a non-cast
"void *".  Cast it and disable the -Wcast-qual warning because I don't
want to copy the data and I didn't find a better way to implement it.

ok guenther@
usr.sbin/relayd/ca.c