diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2007-01-08 15:31:02 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2007-01-08 15:31:02 +0000 |
commit | 7c3851e6547958de885909d55e3d4e0931af0fef (patch) | |
tree | 27628bc0d1898777e02a79fe9d67e860b2155137 /usr.sbin/sasyncd/log.c | |
parent | 418524671013d08f6a4078594e45593578009a4c (diff) |
allow shared key specification in hex (0x01234...); ok ho
Diffstat (limited to 'usr.sbin/sasyncd/log.c')
-rw-r--r-- | usr.sbin/sasyncd/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sasyncd/log.c b/usr.sbin/sasyncd/log.c index 70003eb89b9..6af7c5fe553 100644 --- a/usr.sbin/sasyncd/log.c +++ b/usr.sbin/sasyncd/log.c @@ -1,4 +1,4 @@ -/* $OpenBSD: log.c,v 1.4 2005/05/26 19:19:51 ho Exp $ */ +/* $OpenBSD: log.c,v 1.5 2007/01/08 15:31:01 markus Exp $ */ /* * Copyright (c) 2005 Håkan Olsson. All rights reserved. @@ -46,7 +46,7 @@ void log_init(char *pname) { tzset(); - openlog(pname, LOG_CONS, LOG_DAEMON); + openlog(pname, LOG_CONS | LOG_PID, LOG_DAEMON); } static void |