summaryrefslogtreecommitdiff
path: root/radmsg.c
diff options
context:
space:
mode:
Diffstat (limited to 'radmsg.c')
-rw-r--r--radmsg.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/radmsg.c b/radmsg.c
index e95ea59..cd01861 100644
--- a/radmsg.c
+++ b/radmsg.c
@@ -101,9 +101,7 @@ struct tlv *radmsg_gettype(struct radmsg *msg, uint8_t type) {
* If all attributes were copied successfully, the number of
* attributes copied is returned.
*
- * If copying failed, a negative number is returned. The number
- * returned is 0 minus the number of attributes successfully copied
- * before the failure. */
+ * If copying failed, a negative number is returned. */
int radmsg_copy_attrs(struct radmsg *dst,
const struct radmsg *src,
uint8_t type)
@@ -114,7 +112,7 @@ int radmsg_copy_attrs(struct radmsg *dst,
for (node = list_first(list); node; node = list_next(node)) {
if (radmsg_add(dst, copytlv((struct tlv *) node->data)) != 1) {
- n = -n;
+ n = -1;
break;
}
n++;