1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-23 00:08:50 -05:00

* Fixed the handle realroot stuff

* Added some {}
This commit is contained in:
Aaron Griffin 2007-03-04 09:16:28 +00:00
parent cdb46ef3fa
commit 28b2dbb52c
2 changed files with 8 additions and 5 deletions

View File

@ -155,13 +155,13 @@ void alpm_option_set_root(const char *root)
/* According to the man page, realpath is safe to use IFF the second arg is
* NULL. */
char *realroot = realpath(root, NULL);
if(!realroot) {
realroot = root;
if(realroot) {
root = realroot;
} else {
_alpm_log(PM_LOG_ERROR, _("cannot canonicalize specified root path '%s'"), root);
}
/* check again, in case both are null */
if(realroot) {
if(root) {
/* verify root ends in a '/' */
int rootlen = strlen(realroot);
if(realroot[rootlen-1] != '/') {
@ -172,6 +172,8 @@ void alpm_option_set_root(const char *root)
handle->root[rootlen-1] = '/';
_alpm_log(PM_LOG_DEBUG, _("option 'root' = %s"), handle->root);
}
if(realroot) {
free(realroot);
}
}

View File

@ -434,8 +434,9 @@ int main(int argc, char *argv[])
}
/* workaround for tr_TR */
if(lang && !strcmp(lang, "tr_TR"))
if(lang && !strcmp(lang, "tr_TR")) {
setlocale(LC_CTYPE, "C");
}
bindtextdomain("pacman", "/usr/share/locale");
textdomain("pacman");