Ignore:
Timestamp:
Nov 14, 2012, 12:59:34 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to 3.6.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/modules/developer.c

    r414 r740  
    125125struct charset_functions weird_functions = {"WEIRD", weird_pull, weird_push};
    126126
    127 int charset_weird_init(void)
     127NTSTATUS charset_weird_init(void)
    128128{
    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;
    131133}
Note: See TracChangeset for help on using the changeset viewer.