From 1cd6515af0ae5d1c3dabd30749a37cfefa7dc4f5 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 15 Jun 2011 12:02:29 -0500 Subject: API: change 'signaturedir' to 'gpgdir' This is more in line with reality and what we have our makepkg, etc. options named anyway. Original-patch-by: Kerrick Staley Signed-off-by: Dan McGee --- lib/libalpm/alpm.h | 8 ++++---- lib/libalpm/handle.c | 18 +++++++++--------- lib/libalpm/handle.h | 2 +- lib/libalpm/signing.c | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) (limited to 'lib/libalpm') diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 845bd478..bfc01e5c 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -181,10 +181,10 @@ const char *alpm_option_get_logfile(pmhandle_t *handle); /** Sets the logfile name. */ int alpm_option_set_logfile(pmhandle_t *handle, const char *logfile); -/** Returns the signature directory path. */ -const char *alpm_option_get_signaturedir(pmhandle_t *handle); -/** Sets the signature directory path. */ -int alpm_option_set_signaturedir(pmhandle_t *handle, const char *signaturedir); +/** Returns the path to libalpm's GnuPG home directory. */ +const char *alpm_option_get_gpgdir(pmhandle_t *handle); +/** Sets the path to libalpm's GnuPG home directory. */ +int alpm_option_set_gpgdir(pmhandle_t *handle, const char *gpgdir); /** Returns whether to use syslog (0 is FALSE, TRUE otherwise). */ int alpm_option_get_usesyslog(pmhandle_t *handle); diff --git a/lib/libalpm/handle.c b/lib/libalpm/handle.c index d2bb4f61..a516003d 100644 --- a/lib/libalpm/handle.c +++ b/lib/libalpm/handle.c @@ -77,7 +77,7 @@ void _alpm_handle_free(pmhandle_t *handle) FREE(handle->logfile); FREE(handle->lockfile); FREE(handle->arch); - FREE(handle->signaturedir); + FREE(handle->gpgdir); FREELIST(handle->dbs_sync); FREELIST(handle->noupgrade); FREELIST(handle->noextract); @@ -140,10 +140,10 @@ const char SYMEXPORT *alpm_option_get_lockfile(pmhandle_t *handle) return handle->lockfile; } -const char SYMEXPORT *alpm_option_get_signaturedir(pmhandle_t *handle) +const char SYMEXPORT *alpm_option_get_gpgdir(pmhandle_t *handle) { CHECK_HANDLE(handle, return NULL); - return handle->signaturedir; + return handle->gpgdir; } int SYMEXPORT alpm_option_get_usesyslog(pmhandle_t *handle) @@ -362,20 +362,20 @@ int SYMEXPORT alpm_option_set_logfile(pmhandle_t *handle, const char *logfile) return 0; } -int SYMEXPORT alpm_option_set_signaturedir(pmhandle_t *handle, const char *signaturedir) +int SYMEXPORT alpm_option_set_gpgdir(pmhandle_t *handle, const char *gpgdir) { CHECK_HANDLE(handle, return -1); - if(!signaturedir) { + if(!gpgdir) { handle->pm_errno = PM_ERR_WRONG_ARGS; return -1; } - if(handle->signaturedir) { - FREE(handle->signaturedir); + if(handle->gpgdir) { + FREE(handle->gpgdir); } - handle->signaturedir = strdup(signaturedir); + handle->gpgdir = strdup(gpgdir); - _alpm_log(handle, PM_LOG_DEBUG, "option 'signaturedir' = %s\n", handle->signaturedir); + _alpm_log(handle, PM_LOG_DEBUG, "option 'gpgdir' = %s\n", handle->gpgdir); return 0; } diff --git a/lib/libalpm/handle.h b/lib/libalpm/handle.h index bace8052..2de6efdd 100644 --- a/lib/libalpm/handle.h +++ b/lib/libalpm/handle.h @@ -55,7 +55,7 @@ struct __pmhandle_t { char *dbpath; /* Base path to pacman's DBs */ char *logfile; /* Name of the log file */ char *lockfile; /* Name of the lock file */ - char *signaturedir; /* Directory where GnuPG files are stored */ + char *gpgdir; /* Directory where GnuPG files are stored */ alpm_list_t *cachedirs; /* Paths to pacman cache directories */ /* package lists */ diff --git a/lib/libalpm/signing.c b/lib/libalpm/signing.c index ff97d4c7..9826e425 100644 --- a/lib/libalpm/signing.c +++ b/lib/libalpm/signing.c @@ -116,7 +116,7 @@ static int init_gpgme(pmhandle_t *handle) return 0; } - sigdir = alpm_option_get_signaturedir(handle); + sigdir = alpm_option_get_gpgdir(handle); if(!sigdir) { RET_ERR(handle, PM_ERR_SIG_MISSINGDIR, 1); } -- cgit v1.2.3-24-g4f1b