mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 15:36:35 -04:00
sssd integrates the functionality of pam_krb5 and pam_ldap/nss_ldap with caching and additional features. This project provides a set of daemons to manage access to remote directories and authentication mechanisms, it provides an NSS and PAM interface toward the system and a pluggable backend system to connect to multiple different account sources. It is also the basis to provide client auditing and policy services for projects like FreeIPA. sssd also features caching, which can allow for offline use to assist laptop users. WWW: https://fedorahosted.org/sssd/ PR: ports/161555 Submitted by: Andrew Elble <aweits@rit.edu>
24 lines
921 B
C
24 lines
921 B
C
--- ./src/monitor/monitor.c.orig 2011-08-29 11:39:05.000000000 -0400
|
|
+++ ./src/monitor/monitor.c 2011-10-13 12:15:03.000000000 -0400
|
|
@@ -57,6 +57,10 @@
|
|
|
|
int cmdline_debug_level;
|
|
|
|
+errno_t monitor_config_file_fallback(TALLOC_CTX *mem_ctx,
|
|
+ struct mt_ctx *ctx,
|
|
+ const char *file,
|
|
+ monitor_reconf_fn fn);
|
|
struct svc_spy;
|
|
|
|
struct mt_svc {
|
|
@@ -1606,10 +1610,6 @@
|
|
talloc_free(tmp_ctx);
|
|
}
|
|
|
|
-errno_t monitor_config_file_fallback(TALLOC_CTX *mem_ctx,
|
|
- struct mt_ctx *ctx,
|
|
- const char *file,
|
|
- monitor_reconf_fn fn);
|
|
static void rewatch_config_file(struct tevent_context *ev,
|
|
struct tevent_timer *te,
|
|
struct timeval t, void *ptr)
|