Print this page
NEX-5560 smb2 should use 64-bit server-global uids
Reviewed by: Gordon Ross <gwr@nexenta.com>
NEX-2460 libfksmbd should not link with libsmb
NEX-1638 Updated DC Locator
 Includes work by: matt.barden@nexenta.com, kevin.crowe@nexenta.com
SMB-136 Snapshots not visible in Windows previous versions
re #6854 FindFirstFile,FindFirstFileEx,... are not working correctly on Nexenta CIFS-shares
        
*** 18,28 ****
   *
   * CDDL HEADER END
   */
  /*
   * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
!  * Copyright 2014 Nexenta Systems, Inc. All rights reserved.
   */
  
  #include <sys/sunddi.h>
  #if !defined(_KERNEL) && !defined(_FAKE_KERNEL)
  #include <string.h>
--- 18,28 ----
   *
   * CDDL HEADER END
   */
  /*
   * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
!  * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
   */
  
  #include <sys/sunddi.h>
  #if !defined(_KERNEL) && !defined(_FAKE_KERNEL)
  #include <string.h>
*** 236,247 ****
  bool_t
  smb_netuserinfo_xdr(XDR *xdrs, smb_netuserinfo_t *objp)
  {
          if (!xdr_uint64_t(xdrs, &objp->ui_session_id))
                  return (FALSE);
-         if (!xdr_uint16_t(xdrs, &objp->ui_smb_uid))
-                 return (FALSE);
          if (!xdr_uint16_t(xdrs, &objp->ui_domain_len))
                  return (FALSE);
          if (!xdr_string(xdrs, &objp->ui_domain, ~0))
                  return (FALSE);
          if (!xdr_uint16_t(xdrs, &objp->ui_account_len))
--- 236,245 ----