Skip to content

Commit

Permalink
Fix syslog message in case of upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
bapt committed Mar 3, 2012
1 parent 80ae95a commit 96f447c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libpkg/pkg_event.c
Expand Up @@ -210,7 +210,7 @@ pkg_emit_upgrade_finished(struct pkg *p)
syslog(LOG_NOTICE, "%s reinstalled: %s -> %s ", name, version, newversion);
break;
case -1:
syslog(LOG_NOTICE, "%s reinstalled: %s -> %s ", name, version, newversion);
syslog(LOG_NOTICE, "%s upgraded: %s -> %s ", name, version, newversion);
break;
}
}
Expand Down

0 comments on commit 96f447c

Please sign in to comment.