Changeset 745 for trunk/server/nsswitch/winbind_nss_linux.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/nsswitch/winbind_nss_linux.c
r414 r745 72 72 size_t buflen, int *errnop); 73 73 74 /************************************************************************* 75 ************************************************************************/ 76 77 #ifdef DEBUG_NSS 78 static const char *nss_err_str(NSS_STATUS ret) 79 { 80 switch (ret) { 81 case NSS_STATUS_TRYAGAIN: 82 return "NSS_STATUS_TRYAGAIN"; 83 case NSS_STATUS_SUCCESS: 84 return "NSS_STATUS_SUCCESS"; 85 case NSS_STATUS_NOTFOUND: 86 return "NSS_STATUS_NOTFOUND"; 87 case NSS_STATUS_UNAVAIL: 88 return "NSS_STATUS_UNAVAIL"; 89 #ifdef NSS_STATUS_RETURN 90 case NSS_STATUS_RETURN: 91 return "NSS_STATUS_RETURN"; 92 #endif 93 default: 94 return "UNKNOWN RETURN CODE!!!!!!!"; 95 } 96 } 97 #endif 98 74 99 /* Prototypes from wb_common.c */ 75 100
Note:
See TracChangeset
for help on using the changeset viewer.