]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix indentation in virCryptoHaveCipher
authorJán Tomko <jtomko@redhat.com>
Tue, 15 May 2018 11:08:15 +0000 (13:08 +0200)
committerJán Tomko <jtomko@redhat.com>
Wed, 16 May 2018 08:40:40 +0000 (10:40 +0200)
Signed-off-by: Ján Tomko <jtomko@redhat.com>
src/util/vircrypto.c

index d789129a867611590eab2c04cc35da57a7fbf9f9..2118fdba224672c3c8515ea0ae38bd8151cbbba0 100644 (file)
@@ -132,9 +132,9 @@ virCryptoHaveCipher(virCryptoCipher algorithm)
 
     case VIR_CRYPTO_CIPHER_AES256CBC:
 #ifdef WITH_GNUTLS
-    return true;
+        return true;
 #else
-    return false;
+        return false;
 #endif
 
     case VIR_CRYPTO_CIPHER_NONE: