]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
checksum need a libradius_init() symbol
authorAndreas Steffen <andreas.steffen@strongswan.org>
Thu, 5 Apr 2012 14:52:37 +0000 (16:52 +0200)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Thu, 5 Apr 2012 14:52:37 +0000 (16:52 +0200)
src/libradius/radius_message.c
src/libradius/radius_message.h

index ce8903cdb82fe7b0b2d0d5992777955f096f7c0f..17fa7357b5f2afa0ebecfe208a2e24ab2ee12ebd 100644 (file)
@@ -66,6 +66,14 @@ struct private_radius_message_t {
        rmsg_t *msg;
 };
 
+/**
+ * Described in header.
+ */
+void libradius_init(void)
+{
+       /* empty */
+}
+
 ENUM_BEGIN(radius_message_code_names, RMC_ACCESS_REQUEST, RMC_ACCOUNTING_RESPONSE,
        "Access-Request",
        "Access-Accept",
index 90698ae7b8c3214ce83f3805184269e08afbda64..6d0df53c35c164b2a89e557f55a135c4a407898f 100644 (file)
@@ -278,6 +278,11 @@ struct radius_message_t {
        void (*destroy)(radius_message_t *this);
 };
 
+/**
+ * Dummy libradius initialization function needed for integrity test
+ */
+void libradius_init(void);
+
 /**
  * Create an empty RADIUS message.
  *