[pacman-dev] [PATCH] Some variables were forgotten in update
The variables pkgpath and pkgdata were renamed, but some references were forgotten and the code doesn't compile anymore. Signed-off-by: Denis A. Altoé Falqueto <denisfalqueto@gmail.com> --- Hi guys, It seems that gpg branch from Allan's repo is broken. Some variables were renamed in commit 5f9c29a4, but these lines were left behind. lib/libalpm/signing.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libalpm/signing.c b/lib/libalpm/signing.c index 2a0994c..8013d52 100644 --- a/lib/libalpm/signing.c +++ b/lib/libalpm/signing.c @@ -120,11 +120,11 @@ int _alpm_gpgme_checksig(const char *path, const pmpgpsig_t *sig) return -1; } - _alpm_log(PM_LOG_DEBUG, "checking package signature for %s\n", pkgpath); + _alpm_log(PM_LOG_DEBUG, "checking package signature for %s\n", path); memset(&ctx, 0, sizeof(ctx)); memset(&sigdata, 0, sizeof(sigdata)); - memset(&pkgdata, 0, sizeof(pkgdata)); + memset(&filedata, 0, sizeof(filedata)); err = gpgme_new(&ctx); CHECK_ERR(); -- 1.7.4.2
On 31/03/11 11:19, Denis A. Altoé Falqueto wrote:
The variables pkgpath and pkgdata were renamed, but some references were forgotten and the code doesn't compile anymore.
Signed-off-by: Denis A. Altoé Falqueto<denisfalqueto@gmail.com> ---
Hi guys,
It seems that gpg branch from Allan's repo is broken. Some variables were renamed in commit 5f9c29a4, but these lines were left behind.
Hi Denis, You shuld now use the pacman master branch for gpg work as everything on my gpg branch has been merged there. It looks like Dan fixed these issues while merging to master. Allan
On Wed, Mar 30, 2011 at 10:41 PM, Allan McRae <allan@archlinux.org> wrote:
On 31/03/11 11:19, Denis A. Altoé Falqueto wrote:
The variables pkgpath and pkgdata were renamed, but some references were forgotten and the code doesn't compile anymore.
Signed-off-by: Denis A. Altoé Falqueto<denisfalqueto@gmail.com> ---
Hi guys,
It seems that gpg branch from Allan's repo is broken. Some variables were renamed in commit 5f9c29a4, but these lines were left behind.
Hi Denis,
You shuld now use the pacman master branch for gpg work as everything on my gpg branch has been merged there. It looks like Dan fixed these issues while merging to master.
Hehe, I think I've missed the memo :) Thanks for the heads up! -- A: Because it obfuscates the reading. Q: Why is top posting so bad? ------------------------------------------- Denis A. Altoe Falqueto Linux user #524555 -------------------------------------------
participants (2)
-
Allan McRae
-
Denis A. Altoé Falqueto