Ignore:
Timestamp:
Nov 29, 2012, 2:06:31 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.9 2nd part

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/lib/crypto/hmacmd5.c

    r745 r752  
    3737        if (key_len > 64)
    3838        {
    39                 struct MD5Context tctx;
     39                MD5_CTX tctx;
    4040
    4141                MD5Init(&tctx);
     
    9292_PUBLIC_ void hmac_md5_final(uint8_t *digest, HMACMD5Context *ctx)
    9393{
    94         struct MD5Context ctx_o;
     94        MD5_CTX ctx_o;
    9595
    9696        MD5Final(digest, &ctx->ctx);         
Note: See TracChangeset for help on using the changeset viewer.