Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/modules/vfs_catia.c

    r414 r745  
    2828
    2929#include "includes.h"
     30#include "smbd/smbd.h"
    3031
    3132#define GLOBAL_SNUM     0xFFFFFFF
     
    236237
    237238        if ((push_ucs2_talloc(ctx, &tmpbuf, name_in,
    238                               &converted_size)) == -1) {
     239                              &converted_size)) == false) {
    239240                return map_nt_error_from_unix(errno);
    240241        }
     
    253254
    254255        if ((pull_ucs2_talloc(ctx, mapped_name, tmpbuf,
    255                               &converted_size)) == -1) {
     256                              &converted_size)) == false) {
    256257                TALLOC_FREE(tmpbuf);
    257258                return map_nt_error_from_unix(errno);
     
    635636
    636637static char *
    637 catia_realpath(vfs_handle_struct *handle, const char *path,
    638                char *resolved_path)
     638catia_realpath(vfs_handle_struct *handle, const char *path)
    639639{
    640640        char *mapped_name = NULL;
     
    649649        }
    650650
    651         ret = SMB_VFS_NEXT_REALPATH(handle, mapped_name, resolved_path);
     651        ret = SMB_VFS_NEXT_REALPATH(handle, mapped_name);
    652652        TALLOC_FREE(mapped_name);
    653653
     
    991991        .rmdir = catia_rmdir,
    992992        .opendir = catia_opendir,
    993         .open = catia_open,
     993        .open_fn = catia_open,
    994994        .rename = catia_rename,
    995995        .stat = catia_stat,
Note: See TracChangeset for help on using the changeset viewer.