View | Details | Raw Unified | Return to bug 41486
Collapse All | Expand All

(-)src/main.c (+1 lines)
 Lines 604-609    Link Here 
604
#else
604
#else
605
	cache_get_int("notifier_id", &old_id, -1);
605
	cache_get_int("notifier_id", &old_id, -1);
606
	if ((long)old_id == -1) {
606
	if ((long)old_id == -1) {
607
		univention_debug(UV_DEBUG_LISTENER, UV_DEBUG_WARN, "Failed to get last notifier ID from cache");
607
		cache_set_int("notifier_id", id);
608
		cache_set_int("notifier_id", id);
608
	}
609
	}
609
#endif
610
#endif
(-)src/notifier.c (+1 lines)
 Lines 111-116    Link Here 
111
	for (;;) {
111
	for (;;) {
112
		int		msgid;
112
		int		msgid;
113
		time_t		timeout = DELAY_LDAP_CLOSE;
113
		time_t		timeout = DELAY_LDAP_CLOSE;
114
		univention_debug(UV_DEBUG_LISTENER, UV_DEBUG_INFO, "Last Notifier ID: %lu", id);
114
115
115
		if ((msgid = notifier_get_dn(NULL, id+1)) < 1)
116
		if ((msgid = notifier_get_dn(NULL, id+1)) < 1)
116
			break;
117
			break;

Return to bug 41486