Squashed commit of the following:
commit
0f8b7fe0a421e3c46ffff69ac0fe47804fc663ec
Author: Shawn Routhier <sar@isc.org>
Date: Wed Jun 1 09:53:11 2016 -0700
[rt42556] Fix copy and paste error to use remote id instead of circuit id
Changes since 4.1-ESV-R13
-
+- Correct error message in relay to use remote id length instead
+ of circuit id length.
+ [ISC-Bugs #42556]
Changes since 4.1-ESV-R13b1
if (ip->remote_id) {
if (ip->remote_id_len > 255 || ip->remote_id_len < 1)
log_fatal("Remote ID length %d out of range [1-255] "
- "on %s\n", ip->circuit_id_len, ip->name);
+ "on %s\n", ip->remote_id_len, ip->name);
optlen += ip->remote_id_len + 2; /* RAI_REMOTE_ID + len */
}