summaryrefslogtreecommitdiffstats
path: root/src/daemon
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-02-15 13:13:12 +0000
committerLennart Poettering <lennart@poettering.net>2008-02-15 13:13:12 +0000
commit0a807b3c4b6f5cd3fa253e0d39a5da5f7e2e4414 (patch)
treea398ee64904324f175695fa02c23342d56b11a4e /src/daemon
parent75e1ebdf772b07949636662d0b9e52189d8a78e7 (diff)
print pa version id each time we start up, so that it is easier to identify the version people are reporting bugs again
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2107 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/daemon/main.c b/src/daemon/main.c
index 236819e1..acc2f028 100644
--- a/src/daemon/main.c
+++ b/src/daemon/main.c
@@ -596,13 +596,13 @@ int main(int argc, char *argv[]) {
int tty_fd;
if (pa_stdio_acquire() < 0) {
- pa_log("failed to acquire stdio.");
+ pa_log("Failed to acquire stdio.");
goto finish;
}
#ifdef HAVE_FORK
if (pipe(daemon_pipe) < 0) {
- pa_log("failed to create pipe.");
+ pa_log("Failed to create pipe.");
goto finish;
}
@@ -704,6 +704,7 @@ int main(int argc, char *argv[]) {
signal(SIGPIPE, SIG_IGN);
#endif
+ pa_log_info("This is PulseAudio " PACKAGE_VERSION);
pa_log_info("Page size is %lu bytes", (unsigned long) PA_PAGE_SIZE);
if (pa_rtclock_hrtimer())