Changeset 862 for trunk/server/source4/libnet/groupinfo.c
- Timestamp:
- May 13, 2014, 11:39:04 AM (11 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 860
- Property svn:mergeinfo changed
-
trunk/server/source4/libnet/groupinfo.c
r745 r862 88 88 s->monitor_fn(&msg); 89 89 } 90 91 90 92 91 /* have we actually got name resolved 93 92 - we're looking for only one at the moment */ 94 if (s->lookup.out.rids->count == 0) { 95 composite_error(c, NT_STATUS_NO_SUCH_USER); 93 if (s->lookup.out.rids->count != s->lookup.in.num_names) { 94 composite_error(c, NT_STATUS_INVALID_NETWORK_RESPONSE); 95 return; 96 } 97 if (s->lookup.out.types->count != s->lookup.in.num_names) { 98 composite_error(c, NT_STATUS_INVALID_NETWORK_RESPONSE); 99 return; 96 100 } 97 101
Note:
See TracChangeset
for help on using the changeset viewer.