Ignore:
Timestamp:
Jun 29, 2011, 7:36:41 AM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update vendor to version 3.5.6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/libsmb/climessage.c

    r414 r587  
    6464        *p++ = 4;
    6565        memcpy(p, utmp, ulen);
     66        p += ulen;
    6667        *p++ = 4;
    6768        memcpy(p, htmp, hlen);
     69        p += hlen;
    6870        TALLOC_FREE(htmp);
    6971        TALLOC_FREE(utmp);
     
    164166                return tevent_req_post(req, ev);
    165167        }
    166         SCVAL(bytes, 0, 0);     /* pad */
    167         SSVAL(bytes, 1, msglen);
     168        SCVAL(bytes, 0, 1);     /* pad */
     169        SSVAL(bytes+1, 0, msglen);
    168170        memcpy(bytes+3, msg, msglen);
    169171        TALLOC_FREE(tmp);
Note: See TracChangeset for help on using the changeset viewer.