From: Jonathan McDowell Date: Mon, 31 May 2004 23:48:10 +0000 (+0000) Subject: cscvs to tla changeset 115 X-Git-Tag: 0.3.0~69 X-Git-Url: https://the.earth.li/gitweb/?p=onak.git;a=commitdiff_plain;h=e3ac2630467e42937478a8e03dec83693912f9c4 cscvs to tla changeset 115 Author: noodles Date: 2004/01/04 18:47:35 Stop trying to parse a key if we get an unexpected character. --- diff --git a/parsekey.c b/parsekey.c index a498f4c..5c6b320 100644 --- a/parsekey.c +++ b/parsekey.c @@ -5,7 +5,7 @@ * * Copyright 2002 Project Purple * - * $Id: parsekey.c,v 1.17 2003/10/11 21:52:18 noodles Exp $ + * $Id: parsekey.c,v 1.18 2004/01/04 18:47:35 noodles Exp $ */ #include @@ -292,6 +292,7 @@ int read_openpgp_stream(int (*getchar_func)(void *ctx, size_t count, } else { logthing(LOGTHING_ERROR, "Unexpected character: 0x%X", curchar); + rc = 1; } }