summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gps2udp.c2
-rw-r--r--gpsd.c2
-rw-r--r--gpspipe.c2
-rw-r--r--gpxlogger.c2
-rw-r--r--lcdgps.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/gps2udp.c b/gps2udp.c
index 12e190eb..2c1ab765 100644
--- a/gps2udp.c
+++ b/gps2udp.c
@@ -433,7 +433,7 @@ int main(int argc, char **argv)
if (daemonize) {
if (os_daemon(0, 0) != 0) {
(void)fprintf(stderr,
- "gps2udp: demonization failed: %s\n",
+ "gps2udp: daemonization failed: %s\n",
strerror(errno));
}
}
diff --git a/gpsd.c b/gpsd.c
index c14e09a5..3c07a94e 100644
--- a/gpsd.c
+++ b/gpsd.c
@@ -2001,7 +2001,7 @@ int main(int argc, char *argv[])
/* not SuS/POSIX portable, but we have our own fallback version */
if (os_daemon(0, 0) != 0)
gpsd_log(&context.errout, LOG_ERROR,
- "demonization failed: %s\n",strerror(errno));
+ "daemonization failed: %s\n",strerror(errno));
}
if (pid_file != NULL) {
diff --git a/gpspipe.c b/gpspipe.c
index bd72f153..0d4a7899 100644
--- a/gpspipe.c
+++ b/gpspipe.c
@@ -251,7 +251,7 @@ int main(int argc, char **argv)
if (daemonize)
if (os_daemon(0, 0) != 0)
(void)fprintf(stderr,
- "gpspipe: demonization failed: %s\n",
+ "gpspipe: daemonization failed: %s\n",
strerror(errno));
/* Sleep for ten seconds if the user requested it. */
diff --git a/gpxlogger.c b/gpxlogger.c
index 5cd2734e..d93d527b 100644
--- a/gpxlogger.c
+++ b/gpxlogger.c
@@ -321,7 +321,7 @@ int main(int argc, char **argv)
if (daemonize) {
/* not SuS/POSIX portable, but we have our own fallback version */
if (os_daemon(0, 0) != 0)
- (void) fprintf(stderr,"demonization failed: %s\n", strerror(errno));
+ (void) fprintf(stderr,"daemonization failed: %s\n", strerror(errno));
}
//syslog (LOG_INFO, "---------- STARTED ----------");
diff --git a/lcdgps.c b/lcdgps.c
index a073649e..12e3cc06 100644
--- a/lcdgps.c
+++ b/lcdgps.c
@@ -344,7 +344,7 @@ int main(int argc, char *argv[])
/* Daemonize... */
if (os_daemon(0, 0) != 0)
(void)fprintf(stderr,
- "lcdgps: demonization failed: %s\n",
+ "lcdgps: daemonization failed: %s\n",
strerror(errno));
/* Open the stream to gpsd. */