diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2013-03-22 10:37:49 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2013-03-22 10:37:49 +0100 |
commit | a1bc67d6c9ac3fc6ac7ea7fef63bb5528181b34c (patch) | |
tree | 3e9a6d78da4b7a07349d19c9a0718afd42632526 /src/libtncif/tncif_identity.c | |
parent | 3db17b0ccc80b8de9e170f41ba53c96a8ad5fd6a (diff) | |
download | strongswan-a1bc67d6c9ac3fc6ac7ea7fef63bb5528181b34c.tar.bz2 strongswan-a1bc67d6c9ac3fc6ac7ea7fef63bb5528181b34c.tar.xz |
Switch encoding of AR Identity Value from binary to UTF-8
Diffstat (limited to 'src/libtncif/tncif_identity.c')
-rw-r--r-- | src/libtncif/tncif_identity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtncif/tncif_identity.c b/src/libtncif/tncif_identity.c index 66de83dbd..7ee215c77 100644 --- a/src/libtncif/tncif_identity.c +++ b/src/libtncif/tncif_identity.c @@ -196,7 +196,7 @@ tncif_identity_t *tncif_identity_create(pen_type_t identity_type, this = (private_tncif_identity_t*)tncif_identity_create_empty(); this->identity_type = identity_type; - this->identity_value = chunk_clone(identity_value); + this->identity_value = identity_value; this->subject_type = subject_type; this->auth_type = auth_type; |