summaryrefslogtreecommitdiff
path: root/lib/ext/signature.h
diff options
context:
space:
mode:
authorTim Rühsen <tim.ruehsen@gmx.de>2019-05-08 07:46:40 +0000
committerTim Rühsen <tim.ruehsen@gmx.de>2019-05-08 07:46:40 +0000
commit664fc06c44301eb811a28b444f35dd8e3c688dea (patch)
tree5fbe7626602bdb11e91a8b7e5cd92ae792424657 /lib/ext/signature.h
parent03e1f6430150ef19d432e56d334b0f1d2424aeaa (diff)
parentd726c955344bbcda9b17c5b5f17785a68f0870b9 (diff)
downloadgnutls-664fc06c44301eb811a28b444f35dd8e3c688dea.tar.gz
Merge branch 'tmp-header-guards' into 'master'
Add or clean header guards in lib/ Closes #728 See merge request gnutls/gnutls!954
Diffstat (limited to 'lib/ext/signature.h')
-rw-r--r--lib/ext/signature.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/ext/signature.h b/lib/ext/signature.h
index 28e8966b1c..a6448f34b6 100644
--- a/lib/ext/signature.h
+++ b/lib/ext/signature.h
@@ -20,10 +20,11 @@
*
*/
+#ifndef GNUTLS_LIB_EXT_SIGNATURE_H
+#define GNUTLS_LIB_EXT_SIGNATURE_H
+
/* signature algorithms extension
*/
-#ifndef EXT_SIGNATURE_H
-#define EXT_SIGNATURE_H
#include <hello_ext.h>
@@ -55,4 +56,5 @@ gnutls_sign_algorithm_set_client(gnutls_session_t session,
{
session->security_parameters.client_sign_algo = sign;
}
-#endif
+
+#endif /* GNUTLS_LIB_EXT_SIGNATURE_H */