index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Jakob Gruber <jakob.gruber@gmail.com> | 2010-10-02 20:32:03 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-12-30 09:25:16 -0600 |
commit | cb7ba4e4e5c1b46b726cb6c9f10395784511bb2a (patch) | |
tree | 12ea510b3f57e53ed3c7193c874ae6721bf4c08b /lib/libalpm/sync.c | |
parent | 619c165d36c2d89732c2658abaa61bf50ec1ac8e (diff) |
-rw-r--r-- | lib/libalpm/sync.c | 6 |
diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index 0a978024..9741bae0 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -248,7 +248,7 @@ static int sync_pkg(pmpkg_t *spkg, alpm_list_t *pkg_list) return(0); } -static int sync_target(alpm_list_t *dbs_sync, char *target) +static int sync_target(alpm_list_t *dbs_sync, const char *target) { alpm_list_t *i, *j; alpm_list_t *known_pkgs = NULL; @@ -309,7 +309,7 @@ static int sync_target(alpm_list_t *dbs_sync, char *target) * @param target the name of the sync target to add * @return 0 on success, -1 on error (pm_errno is set accordingly) */ -int SYMEXPORT alpm_sync_dbtarget(char *dbname, char *target) +int SYMEXPORT alpm_sync_dbtarget(const char *dbname, const char *target) { alpm_list_t *i; alpm_list_t *dbs_sync; @@ -342,7 +342,7 @@ int SYMEXPORT alpm_sync_dbtarget(char *dbname, char *target) * @param target the name of the sync target to add * @return 0 on success, -1 on error (pm_errno is set accordingly) */ -int SYMEXPORT alpm_sync_target(char *target) +int SYMEXPORT alpm_sync_target(const char *target) { alpm_list_t *dbs_sync; |