index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2011-04-15 19:30:11 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-04-20 20:11:26 -0500 |
commit | 442e1420f95ecc6fd1967677c1be5dfed6584542 (patch) | |
tree | 42c26edf4408acad0580c543262aee51e8e91c95 /lib/libalpm/signing.h | |
parent | 3c5661ec3cd5cdf2f1c3101d90789c83786a6897 (diff) |
-rw-r--r-- | lib/libalpm/signing.h | 6 |
diff --git a/lib/libalpm/signing.h b/lib/libalpm/signing.h index 42b56508..a378fa50 100644 --- a/lib/libalpm/signing.h +++ b/lib/libalpm/signing.h @@ -26,9 +26,9 @@ struct __pmpgpsig_t { * this way we can decode on an as-needed basis since most * operations won't require the overhead of base64 decodes * on all packages in a sync repository. */ - char *encdata; - size_t rawlen; - unsigned char *rawdata; + char *base64_data; + unsigned char *data; + size_t len; }; int _alpm_gpgme_checksig(const char *path, const pmpgpsig_t *sig); |