diff options
| author | Thomas Huth <thuth@redhat.com> | 2020-02-03 16:55:34 +0100 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2020-02-04 09:01:31 +0100 |
| commit | 4f67366e3bbe6040998be038156486eed264ea58 (patch) | |
| tree | 02786564e8a9795c620f12a794378a043e4e603d | |
| parent | 9154cf688bbc721a9a38197537fa821f6291b91f (diff) | |
| download | focaccia-qemu-4f67366e3bbe6040998be038156486eed264ea58.tar.gz focaccia-qemu-4f67366e3bbe6040998be038156486eed264ea58.zip | |
configure: Fix typo of the have_afalg variable
The variable is called 'have_afalg' and not 'hava_afalg'.
Fixes: f0d92b56d88 ('introduce some common functions for af_alg backend')
Message-Id: <20200203160046.23194-1-thuth@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Longpeng(Mike) <longpeng2@huawei.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to '')
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 5095f01728..115dc38085 100755 --- a/configure +++ b/configure @@ -5843,7 +5843,7 @@ fi ########################################## # check for usable AF_ALG environment -hava_afalg=no +have_afalg=no cat > $TMPC << EOF #include <errno.h> #include <sys/types.h> |