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/libsmb/libsmb_server.c

    r414 r745  
    2525
    2626#include "includes.h"
     27#include "libsmb/libsmb.h"
    2728#include "libsmbclient.h"
    2829#include "libsmb_internal.h"
    29 
     30#include "../librpc/gen_ndr/ndr_lsa.h"
     31#include "rpc_client/cli_pipe.h"
     32#include "rpc_client/cli_lsarpc.h"
     33#include "libcli/security/security.h"
     34#include "libsmb/nmblib.h"
    3035
    3136/*
     
    331336                                DEBUG(4,
    332337                                      ("IPC$ so ignore case sensitivity\n"));
    333                         } else if (!cli_get_fs_attr_info(c, &fs_attrs)) {
     338                        } else if (!NT_STATUS_IS_OK(cli_get_fs_attr_info(c, &fs_attrs))) {
    334339                                DEBUG(4, ("Could not retrieve "
    335340                                          "case sensitivity flag: %s.\n",
     
    568573        if (is_ipc) {
    569574                DEBUG(4, ("IPC$ so ignore case sensitivity\n"));
    570         } else if (!cli_get_fs_attr_info(c, &fs_attrs)) {
     575        } else if (!NT_STATUS_IS_OK(cli_get_fs_attr_info(c, &fs_attrs))) {
    571576                DEBUG(4, ("Could not retrieve case sensitivity flag: %s.\n",
    572577                          cli_errstr(c)));
     
    776781                                                *pp_password,
    777782                                                flags,
    778                                                 Undefined, NULL);
     783                                                Undefined);
    779784                if (! NT_STATUS_IS_OK(nt_status)) {
    780785                        DEBUG(1,("cli_full_connection failed! (%s)\n",
Note: See TracChangeset for help on using the changeset viewer.