summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/util.c
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2005-03-26 09:50:27 +0100
committerAurelien Foret <aurelien@archlinux.org>2005-03-26 09:50:27 +0100
commitbcfc1244b4114848be3f4cd67099318b6f99413d (patch)
tree4802534be60e533cbcb6c27aefedee22fc5cc2c4 /lib/libalpm/util.c
parent2e28303ee545077f4f4739426ddb6742116621b9 (diff)
downloadpacman-bcfc1244b4114848be3f4cd67099318b6f99413d.tar.gz
pacman-bcfc1244b4114848be3f4cd67099318b6f99413d.tar.xz
updated comments
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r--lib/libalpm/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c
index bebc996a..12b81be3 100644
--- a/lib/libalpm/util.c
+++ b/lib/libalpm/util.c
@@ -391,7 +391,7 @@ int _alpm_runscriptlet(char *root, char *installfn, char *script, char *ver, cha
}
/* ORE
- pm_cblog(PM_LOG_FLOW2, "Executing %s script...\n", script);*/
+ _alpm_log(PM_LOG_FLOW2, "Executing %s script...\n", script);*/
if(oldver) {
snprintf(cmdline, PATH_MAX, "echo \"umask 0022; source %s %s %s %s\" | chroot %s /bin/sh",
scriptpath, script, ver, oldver, root);
@@ -400,7 +400,7 @@ int _alpm_runscriptlet(char *root, char *installfn, char *script, char *ver, cha
scriptpath, script, ver, root);
}
/* ORE
- pm_cblog(PM_LOG_FLOW2, "%s\n", cmdline);*/
+ _alpm_log(PM_LOG_FLOW2, "%s\n", cmdline);*/
system(cmdline);
if(strlen(tmpdir) && _alpm_rmrf(tmpdir)) {