X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=keydb_pg.c;h=dd7cbfdbbdc30b203246503fba1f984e281d3ce1;hb=848a41ea337ecee39f3eaf9d091a316d07ec8e9d;hp=8b89b7182115f296af3c37ca1bec7482c5a4d1a7;hpb=cd002cef518222c140de94b8817874b072b2d918;p=onak.git diff --git a/keydb_pg.c b/keydb_pg.c index 8b89b71..dd7cbfd 100644 --- a/keydb_pg.c +++ b/keydb_pg.c @@ -4,15 +4,11 @@ * Jonathan McDowell * * Copyright 2002 Project Purple - * - * $Id: keydb_pg.c,v 1.14 2004/03/23 12:33:47 noodles Exp $ */ #include #include -//#include -//#include #include #include #include @@ -42,7 +38,7 @@ static PGconn *dbconn = NULL; */ static int keydb_fetchchar(void *fd, size_t count, unsigned char *c) { - return (!lo_read(dbconn, *(int *) fd, c, count)); + return (!lo_read(dbconn, *(int *) fd, (char *) c, count)); } /** @@ -50,7 +46,7 @@ static int keydb_fetchchar(void *fd, size_t count, unsigned char *c) */ static int keydb_putchar(void *fd, size_t count, unsigned char *c) { - return !(lo_write(dbconn, *(int *) fd, c, count)); + return !(lo_write(dbconn, *(int *) fd, (char *) c, count)); } /** @@ -243,7 +239,8 @@ int fetch_key_text(const char *search, struct openpgp_publickey **publickey) "Can't open large object."); } else { read_openpgp_stream(keydb_fetchchar, &fd, - &packets); + &packets, + 0); parse_keys(packets, publickey); lo_close(dbconn, fd); free_packet_list(packets);