File: Fix-indentation-3.patch

package info (click to toggle)
xml-security-c 1.7.3-4%2Bdeb9u3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,096 kB
  • sloc: cpp: 47,259; sh: 4,123; makefile: 503
file content (23 lines) | stat: -rw-r--r-- 721 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: =?utf-8?q?Ferenc_W=C3=A1gner?= <wferi@niif.hu>
Date: Sun, 31 Jan 2016 00:46:26 +0100
Subject: Fix indentation 3

---
 xsec/enc/OpenSSL/OpenSSLCryptoKeyEC.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xsec/enc/OpenSSL/OpenSSLCryptoKeyEC.cpp b/xsec/enc/OpenSSL/OpenSSLCryptoKeyEC.cpp
index 189bc0f..3233343 100644
--- a/xsec/enc/OpenSSL/OpenSSLCryptoKeyEC.cpp
+++ b/xsec/enc/OpenSSL/OpenSSLCryptoKeyEC.cpp
@@ -307,8 +307,8 @@ XSECCryptoKey * OpenSSLCryptoKeyEC::clone() const {
 	XSECnew(ret, OpenSSLCryptoKeyEC);
 
 	ret->m_keyType = m_keyType;
-    if (mp_ecKey)
-        ret->mp_ecKey = EC_KEY_dup(mp_ecKey);
+	if (mp_ecKey)
+		ret->mp_ecKey = EC_KEY_dup(mp_ecKey);
 
 	return ret;