server/crypto.c: Use internal debug macro instead of nbdkit_debug function
commit2600bbaafd3833adc2bb9053956a54497864b86c
authorRichard W.M. Jones <rjones@redhat.com>
Sat, 14 Jan 2023 09:23:27 +0000 (14 09:23 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Sat, 14 Jan 2023 09:28:31 +0000 (14 09:28 +0000)
treecdfe8dddbaee6fbfc067ac7489b91ae7ba48e42f
parent5a6e83d9748cd9ceb552a3124955b198b3a42119
server/crypto.c: Use internal debug macro instead of nbdkit_debug function

The convention within the server code is to use the debug macro
instead of the nbdkit_debug function.  A few places in server/crypto.c
didn't do that.

The function and macro are not quite equivalent because the macro
checks if 'verbose' is set in the expanded code.  (The function checks
the flag again.)  The difference is not relevant here.

Updates: commit fab4a090d09fa213ee0b6fb8fbaa386ef9a6641c
server/crypto.c