Changeset 745 for trunk/server/source3/winbindd/idmap_passdb.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source3/winbindd/idmap_passdb.c
r414 r745 5 5 6 6 Copyright (C) Simo Sorce 2006 7 7 8 8 This program is free software; you can redistribute it and/or modify 9 9 it under the terms of the GNU General Public License as published by 10 10 the Free Software Foundation; either version 3 of the License, or 11 11 (at your option) any later version. 12 12 13 13 This program is distributed in the hope that it will be useful, 14 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 16 GNU General Public License for more details. 17 17 18 18 You should have received a copy of the GNU General Public License 19 19 along with this program. If not, see <http://www.gnu.org/licenses/>. … … 21 21 22 22 #include "includes.h" 23 #include "idmap.h" 24 #include "passdb.h" 23 25 24 26 #undef DBGC_CLASS … … 29 31 *****************************/ 30 32 31 static NTSTATUS idmap_pdb_init(struct idmap_domain *dom , const char *params)33 static NTSTATUS idmap_pdb_init(struct idmap_domain *dom) 32 34 { 33 35 return NT_STATUS_OK; … … 77 79 enum lsa_SidType type; 78 80 union unid_t id; 79 81 80 82 if (pdb_sid_to_id(ids[i]->sid, &id, &type)) { 81 83 switch (type) { … … 112 114 **********************************/ 113 115 114 static NTSTATUS idmap_pdb_close(struct idmap_domain *dom)115 {116 return NT_STATUS_OK;117 }118 119 116 static struct idmap_methods passdb_methods = { 120 117 … … 122 119 .unixids_to_sids = idmap_pdb_unixids_to_sids, 123 120 .sids_to_unixids = idmap_pdb_sids_to_unixids, 124 .close_fn =idmap_pdb_close125 121 }; 126 122
Note:
See TracChangeset
for help on using the changeset viewer.