ATTRIBUTE MS-CHAP-Peer-Challenge 1192 octets
ATTRIBUTE Home-Server-Name 1193 string
+ATTRIBUTE TCP-Session-Key 1194 string
ATTRIBUTE TOTP-Secret 1194 string # base32 encoded
ATTRIBUTE TOTP-Key 1195 octets # raw key
* Save the key, if we haven't already done that.
*/
if (listener->send_coa && !listener->key) {
- VALUE_PAIR *vp;
+ VALUE_PAIR *vp = NULL;
vp = fr_pair_find_by_num(request->config, PW_TCP_SESSION_KEY, 0, TAG_ANY);
if (vp) {
- RDEBUG("Adding send CoA listener with key %s" vp->vp_strvalue);
+ RDEBUG("Adding send CoA listener with key %s", vp->vp_strvalue);
// listener_store_bykey(request->listener, vp->vp_strvalue);
}
}