Changeset 745 for trunk/server/source3/winbindd/winbindd_ndr.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/winbindd_ndr.c
r414 r745 20 20 #include "includes.h" 21 21 #include "winbindd.h" 22 #include "../librpc/gen_ndr/ndr_netlogon.h" 23 #include "../librpc/gen_ndr/ndr_security.h" 24 #include "librpc/ndr/util.h" 22 25 23 26 #undef DBGC_CLASS … … 119 122 const struct winbindd_domain *r) 120 123 { 124 int i; 121 125 if (!r) { 122 126 return; … … 149 153 ndr_print_NTSTATUS(ndr, "last_status", r->last_status); 150 154 ndr_print_winbindd_cm_conn(ndr, "conn", &r->conn); 151 ndr_print_winbindd_child(ndr, "child", &r->child); 155 for (i=0; i<lp_winbind_max_domain_connections(); i++) { 156 ndr_print_winbindd_child(ndr, "children", &r->children[i]); 157 } 152 158 ndr_print_uint32(ndr, "check_online_timeout", r->check_online_timeout); 153 159 ndr_print_ptr(ndr, "check_online_event", r->check_online_event);
Note:
See TracChangeset
for help on using the changeset viewer.