diff options
author | Francis Dupont <fdupont@isc.org> | 2015-09-12 19:21:18 +0200 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2015-09-12 19:21:18 +0200 |
commit | 713cfd126d317afc545317c61623fc8aedcc7dbf (patch) | |
tree | 1b4ace3c7bba0912006e5e14d24cfe84f3b24dda /includes | |
parent | fc2d5bc8561a99d9269cac7b60bb14bfdecc06a9 (diff) | |
download | isc-dhcp-713cfd126d317afc545317c61623fc8aedcc7dbf.tar.gz |
Merged #38692 (use program base name in (sys)log)
Diffstat (limited to 'includes')
-rw-r--r-- | includes/omapip/omapip_p.h | 5 | ||||
-rw-r--r-- | includes/site.h | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/includes/omapip/omapip_p.h b/includes/omapip/omapip_p.h index 3fa4c92f..9edfb836 100644 --- a/includes/omapip/omapip_p.h +++ b/includes/omapip/omapip_p.h @@ -3,7 +3,8 @@ Private master include file for the OMAPI library. */ /* - * Copyright (c) 2009-2010,2014 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2014-2015 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2009-2010 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 2004,2007 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1996-2003 by Internet Software Consortium * @@ -287,6 +288,8 @@ void do_percentm (char *obuf, const char *ibuf); isc_result_t uerr2isc (int); isc_result_t ns_rcode_to_isc (int); +const char *isc_file_basename(const char *filename); + extern omapi_message_object_t *omapi_registered_messages; #endif /* __OMAPIP_OMAPIP_P_H__ */ diff --git a/includes/site.h b/includes/site.h index c4168f81..1b838004 100644 --- a/includes/site.h +++ b/includes/site.h @@ -175,6 +175,12 @@ /* #define USE_RAW_SOCKETS */ +/* Define this to keep the old program name (e.g., "dhcpd" for + the DHCP server) in place of the (base) name the program was + invoked with. */ + +/* #define OLD_LOG_NAME */ + /* Define this to change the logging facility used by dhcpd. */ /* #define DHCPD_LOG_FACILITY LOG_DAEMON */ |