X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=armor.c;fp=armor.c;h=6d3fc138f6bee1445f9ac9fea4a0f20139723468;hb=8b4052ad6015aa9f54c9c824f28655f230d09d8d;hp=ac1d23f44d1696ede71258dafde24f6b4086061d;hpb=3eae5368f1c625257a93a18bec49a5a500b3f78e;p=onak.git diff --git a/armor.c b/armor.c index ac1d23f..6d3fc13 100644 --- a/armor.c +++ b/armor.c @@ -6,11 +6,11 @@ * Copyright 2002 Project Purple */ -#include #include #include "armor.h" #include "keystructs.h" +#include "log.h" #include "onak-conf.h" #include "parsekey.h" @@ -34,7 +34,7 @@ static unsigned char encode64(unsigned char c) { } else if (c == 63) { c = '/'; } else { - assert(c < 64); + log_assert(c < 64); } return c; @@ -142,7 +142,7 @@ static int armor_putchar_int(void *ctx, unsigned char c) unsigned char t; int i; - assert(ctx != NULL); + log_assert(ctx != NULL); state = (struct armor_context *) ctx; switch (state->curoctet++) { @@ -243,7 +243,7 @@ static int dearmor_getchar(void *ctx, unsigned char *c) unsigned char tmpc; int i; - assert(ctx != NULL); + log_assert(ctx != NULL); state = (struct dearmor_context *) ctx; *c = 0;