]> the.earth.li Git - onak.git/commitdiff
cscvs to tla changeset 115
authorJonathan McDowell <noodles@earth.li>
Mon, 31 May 2004 23:48:10 +0000 (23:48 +0000)
committerJonathan McDowell <noodles@earth.li>
Mon, 31 May 2004 23:48:10 +0000 (23:48 +0000)
Author: noodles
Date: 2004/01/04 18:47:35
Stop trying to parse a key if we get an unexpected character.

parsekey.c

index a498f4c0e606d15a6f1a636739a68a9de35bf2b6..5c6b3207801d48f583e05de44229d0377e2544d2 100644 (file)
@@ -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 <assert.h>
@@ -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;
                }
        }