]> the.earth.li Git - onak.git/blobdiff - decodekey.c
Configure basic onak.conf using autoconf info.
[onak.git] / decodekey.c
index eb0a79d2cfd2277adcb5d18ad89df19ce0ac6f59..efffad7d7863a7e310647113801fb21ba545c22f 100644 (file)
@@ -4,11 +4,8 @@
  * Jonathan McDowell <noodles@earth.li>
  *
  * Copyright 2002 Project Purple
- *
- * $Id: decodekey.c,v 1.6 2004/05/27 03:24:01 noodles Exp $
  */
 
-#include <assert.h>
 #include <stdbool.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -37,7 +34,7 @@ int parse_subpackets(unsigned char *data, uint64_t *keyid)
        int length = 0;
        int packetlen = 0;
 
-       assert(data != NULL);
+       log_assert(data != NULL);
 
        length = (data[0] << 8) + data[1] + 2;