]> the.earth.li Git - onak.git/blobdiff - parsekey.c
Fix handling of other signature requirement
[onak.git] / parsekey.c
index 618492bd4e0171400646aced09ff0de4e105e952..49b91bfee2c5183cf0794ec187f4e451cf700621 100644 (file)
@@ -377,9 +377,9 @@ onak_status_t read_openpgp_stream(int (*getchar_func)(void *ctx, size_t count,
                        case OPENPGP_PACKET_SIGNATURE:
                        case OPENPGP_PACKET_SECRETKEY:
                        case OPENPGP_PACKET_PUBLICKEY:
-                               /* Must be v2 -> v4 */
+                               /* Must be v2 -> v5 */
                                if (curpacket->packet->data[0] < 2 ||
-                                       curpacket->packet->data[0] > 4) {
+                                       curpacket->packet->data[0] > 5) {
                                        rc = ONAK_E_INVALID_PKT;
                                }
                                break;