From 46222e5191473f9a46aec581273eb2eef22e23be Mon Sep 17 00:00:00 2001 From: Michal Zidek Date: Fri, 19 Apr 2013 18:02:32 +0200 Subject: libsss_idmap: function to calculate range Calculation of range for domains is moved from sdap_idmap code to sss_idmap code. Some refactoring have been done to allow this move. https://fedorahosted.org/sssd/ticket/1844 --- src/providers/ldap/sdap_idmap.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/providers/ldap/sdap_idmap.h') diff --git a/src/providers/ldap/sdap_idmap.h b/src/providers/ldap/sdap_idmap.h index 99f2ad9e..2e2123ff 100644 --- a/src/providers/ldap/sdap_idmap.h +++ b/src/providers/ldap/sdap_idmap.h @@ -26,16 +26,8 @@ #include "src/providers/ldap/sdap.h" #include "src/providers/ldap/ldap_common.h" -struct sdap_idmap_slice { - struct sdap_idmap_slice *prev; - struct sdap_idmap_slice *next; - - id_t slice_num; -}; - struct sdap_idmap_ctx { struct sss_idmap_ctx *map; - struct sdap_idmap_slice *slices; struct sdap_id_ctx *id_ctx; }; -- cgit