finally it works on aix, at least sec/pub key stuff, signatures still hang

This commit is contained in:
TLINDEN
2013-11-19 10:06:24 +01:00
parent c4940b966c
commit 314dbde0b9
14 changed files with 159 additions and 145 deletions

View File

@@ -199,7 +199,8 @@ pcp_pubkey_t *pcpkey_pub_from_secret(pcp_key_t *key) {
memcpy(pub->id, key->id, 17);
pub->version = key->version;
pub->type = PCP_KEY_TYPE_PUBLIC;
pub->ctime = key->ctime;
pub->ctime = key->ctime;
pub->serial = key->serial;
return pub;
}