Fixed some cosmetic naming in log entries

This commit is contained in:
Ian Stakenvicius 2012-12-17 11:58:10 -05:00
parent cc5c144a70
commit 9e4b735b05
2 changed files with 2 additions and 2 deletions
src

View File

@ -714,7 +714,7 @@ ssize_t print_kmsg(const char *fmt, ...)
if (fd < 0)
return -errno;
len = snprintf(text, sizeof(text), "<30>systemd-udevd[%u]: ", getpid());
len = snprintf(text, sizeof(text), "<30>udevd[%u]: ", getpid());
va_start(ap, fmt);
len += vsnprintf(text + len, sizeof(text) - len, fmt, ap);

View File

@ -1273,7 +1273,7 @@ int main(int argc, char *argv[])
sd_notify(1, "READY=1");
}
print_kmsg("starting version " VERSION "\n");
print_kmsg("starting eudev version " VERSION "\n");
if (!debug) {
int fd;