X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=merge.c;h=d2d2beb1ace4f87471cdb5b9396323f9fb3389f8;hb=17fdc00968dc7eca13fbb22ef1c68c1af0968e99;hp=6ed0a2d139a40af796251862a7cb624f4fc6deeb;hpb=0f4971d043c38bae1bfb95201622a1405110f899;p=onak.git diff --git a/merge.c b/merge.c index 6ed0a2d..d2d2beb 100644 --- a/merge.c +++ b/merge.c @@ -4,11 +4,8 @@ * Jonathan McDowell * * Copyright 2002 Project Purple - * - * $Id: merge.c,v 1.10 2003/06/04 20:57:11 noodles Exp $ */ -#include #include #include #include @@ -149,7 +146,9 @@ bool remove_signed_packet(struct openpgp_signedpacket_list **packet_list, if (cur->next == NULL) { *list_end = prev; } - // TODO: Free the removed signed packet... + /* + * TODO: Free the removed signed packet... + */ } prev = cur; } @@ -174,7 +173,7 @@ int merge_packet_sigs(struct openpgp_signedpacket_list *old, struct openpgp_packet_list *curpacket = NULL; struct openpgp_packet_list *nextpacket = NULL; - assert(compare_packets(old->packet, new->packet)); + log_assert(compare_packets(old->packet, new->packet)); curpacket = new->sigs; while (curpacket != NULL) { @@ -194,7 +193,7 @@ int merge_packet_sigs(struct openpgp_signedpacket_list *old, if (lastpacket != NULL) { lastpacket->next = curpacket->next; } else { - assert(curpacket == new->sigs); + log_assert(curpacket == new->sigs); new->sigs = curpacket->next; } curpacket->next = NULL; @@ -319,7 +318,7 @@ int merge_keys(struct openpgp_publickey *a, struct openpgp_publickey *b) if (lastpacket != NULL) { lastpacket->next = curpacket->next; } else { - assert(curpacket == b->revocations); + log_assert(curpacket == b->revocations); b->revocations = curpacket->next; } curpacket->next = NULL;