Changeset 740 for vendor/current/source3/modules/developer.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/modules/developer.c
r414 r740 125 125 struct charset_functions weird_functions = {"WEIRD", weird_pull, weird_push}; 126 126 127 intcharset_weird_init(void)127 NTSTATUS charset_weird_init(void) 128 128 { 129 smb_register_charset(&weird_functions); 130 return True; 129 if (!smb_register_charset(&weird_functions)) { 130 return NT_STATUS_INTERNAL_ERROR; 131 } 132 return NT_STATUS_OK; 131 133 }
Note:
See TracChangeset
for help on using the changeset viewer.