Changeset 196
- Timestamp:
- 07/01/05 09:11:35
- Files:
-
- openpgpsdk/trunk/examples/packet-dump.c (modified) (2 diffs)
- openpgpsdk/trunk/include/packet.h (modified) (2 diffs)
- openpgpsdk/trunk/src/packet-parse.c (modified) (2 diffs)
- openpgpsdk/trunk/test/subpacket-28.raw (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/examples/packet-dump.c
r194 r196 167 167 ++str; 168 168 } 169 putchar('\n'); 169 170 } 170 171 … … 548 549 break; 549 550 551 case OPS_PTAG_SS_SIGNERS_USER_ID: 552 start_subpacket(content_->tag); 553 print_string("Signer's User ID",content->ss_signers_user_id.user_id); 554 end_subpacket(); 555 break; 556 550 557 case OPS_PTAG_SS_PREFERRED_KEY_SERVER: 551 558 start_subpacket(content_->tag); openpgpsdk/trunk/include/packet.h
r194 r196 167 167 OPS_PTAG_SS_POLICY_URL =0x200+26, /*!< Policy URL */ 168 168 OPS_PTAG_SS_KEY_FLAGS =0x200+27, /*!< key flags */ 169 OPS_PTAG_SS_SIGNERS_USER_ID =0x200+28, /*!< Signer's User ID */ 169 170 OPS_PTAG_SS_REVOCATION_REASON =0x200+29, /*!< reason for revocation */ 170 171 OPS_PTAG_SS_FEATURES =0x200+30, /*!< features */ … … 684 685 ops_ss_revocation_reason_t ss_revocation_reason; 685 686 ops_secret_key_t secret_key; 687 ops_user_id_t ss_signers_user_id; 686 688 } ops_parser_content_union_t; 687 689 openpgpsdk/trunk/src/packet-parse.c
r194 r196 510 510 break; 511 511 512 case OPS_PTAG_SS_SIGNERS_USER_ID: 513 ops_user_id_free(&c->content.ss_signers_user_id); 514 break; 515 512 516 case OPS_PTAG_CT_USER_ATTRIBUTE: 513 517 ops_user_attribute_free(&c->content.user_attribute); … … 1032 1036 break; 1033 1037 1038 case OPS_PTAG_SS_SIGNERS_USER_ID: 1039 if(!read_string(&C.ss_signers_user_id.user_id,&subregion,opt)) 1040 return 0; 1041 break; 1042 1034 1043 case OPS_PTAG_SS_NOTATION_DATA: 1035 1044
