diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2018-05-03 22:50:23 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2018-06-01 19:20:37 +0300 |
commit | 986bc8ded9a5459e72951cc91b53cf2b52eb735f (patch) | |
tree | b803626450700ecf506bc180f9a06bc5e39acf9d /crypto/ivgen-plain.c | |
parent | 0d8c41dae5b0566d0022be2af84d50ff456b3537 (diff) |
crypto: use local path for local headers
When pulling in headers that are in the same directory as the C file (as
opposed to one in include/), we should use its relative path, without a
directory.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'crypto/ivgen-plain.c')
-rw-r--r-- | crypto/ivgen-plain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ivgen-plain.c b/crypto/ivgen-plain.c index bf2fb7aac4..06f4145fe5 100644 --- a/crypto/ivgen-plain.c +++ b/crypto/ivgen-plain.c @@ -20,7 +20,7 @@ #include "qemu/osdep.h" #include "qemu/bswap.h" -#include "crypto/ivgen-plain.h" +#include "ivgen-plain.h" static int qcrypto_ivgen_plain_init(QCryptoIVGen *ivgen, const uint8_t *key, size_t nkey, |