summaryrefslogtreecommitdiff
path: root/gpxlogger.c
diff options
context:
space:
mode:
authorFred Wright <fw@fwright.net>2017-03-04 13:53:06 -0800
committerFred Wright <fw@fwright.net>2017-03-04 13:53:06 -0800
commit68372c3547c96a06f12bacd36ae97e9903537f9b (patch)
tree8075d68d4d7a8d26f0925bb73e50dedccafc94ee /gpxlogger.c
parent2f16a30a4e3a36dd1fe175de885193a73aa99ae6 (diff)
downloadgpsd-68372c3547c96a06f12bacd36ae97e9903537f9b.tar.gz
Fixes spelling of "daemonization".
Error messages related to daemonization failures had incorrect spelling. TESTED: Ran "scons build-all" on OSX.
Diffstat (limited to 'gpxlogger.c')
-rw-r--r--gpxlogger.c2
1 files changed, 1 insertions, 1 deletions
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 ----------");