Ignore:
Timestamp:
Nov 14, 2012, 12:59:34 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to 3.6.0

Location:
vendor/current/lib/zlib/contrib
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/lib/zlib/contrib/ada/zlib-streams.ads

    r414 r740  
    3232   --  Flush the written data to the back stream,
    3333   --  all data placed to the compressor is flushing to the Back stream.
    34    --  Should not be used untill necessary, becouse it is decreasing
     34   --  Should not be used untill necessary, because it is decreasing
    3535   --  compression.
    3636
     
    9898      --  Buffer for Read operation.
    9999      --  We need to have this buffer in the record
    100       --  becouse not all read data from back stream
     100      --  because not all read data from back stream
    101101      --  could be processed during the read operation.
    102102
     
    104104      --  Buffer size for write operation.
    105105      --  We do not need to have this buffer
    106       --  in the record becouse all data could be
     106      --  in the record because all data could be
    107107      --  processed in the write operation.
    108108
  • vendor/current/lib/zlib/contrib/ada/zlib-thin.ads

    r414 r740  
    437437   pragma Import (C, inflateBackInit, "inflateBackInit_");
    438438
    439    --  I stopped binding the inflateBack routines, becouse realize that
     439   --  I stopped binding the inflateBack routines, because realize that
    440440   --  it does not support zlib and gzip headers for now, and have no
    441441   --  symmetric deflateBack routines.
  • vendor/current/lib/zlib/contrib/minizip/miniunz.c

    r414 r740  
    537537
    538538        strncpy(filename_try, zipfilename,MAXFILENAME-1);
    539         /* strncpy doesnt append the trailing NULL, of the string is too long. */
     539        /* strncpy doesn't append the trailing NULL, if the string is too long. */
    540540        filename_try[ MAXFILENAME ] = '\0';
    541541
  • vendor/current/lib/zlib/contrib/minizip/minizip.c

    r414 r740  
    7878
    7979    strncpy(name, f,MAXFILENAME-1);
    80     /* strncpy doesnt append the trailing NULL, of the string is too long. */
     80    /* strncpy doesn't append the trailing NULL, if the string is too long. */
    8181    name[ MAXFILENAME ] = '\0';
    8282
     
    254254        zipok = 1 ;
    255255        strncpy(filename_try, argv[zipfilenamearg],MAXFILENAME-1);
    256         /* strncpy doesnt append the trailing NULL, of the string is too long. */
     256        /* strncpy doesn't append the trailing NULL, if the string is too long. */
    257257        filename_try[ MAXFILENAME ] = '\0';
    258258
  • vendor/current/lib/zlib/contrib/minizip/unzip.c

    r414 r740  
    160160     Read a byte from a gz_stream; update next_in and avail_in. Return EOF
    161161   for end of file.
    162    IN assertion: the stream s has been sucessfully opened for reading.
     162   IN assertion: the stream s has been successfully opened for reading.
    163163*/
    164164
     
    296296/*
    297297   Compare two filename (fileName1,fileName2).
    298    If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
    299    If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi
     298   If iCaseSensitivity = 1, comparison is case sensitive (like strcmp)
     299   If iCaseSensitivity = 2, comparison is not case sensitive (like strcmpi
    300300                                                                or strcasecmp)
    301    If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
     301   If iCaseSensitivity = 0, case sensitivity is default of your operating system
    302302        (like 1 on Unix, 2 on Windows)
    303303
  • vendor/current/lib/zlib/contrib/minizip/unzip.h

    r414 r740  
    125125/*
    126126   Compare two filename (fileName1,fileName2).
    127    If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
    128    If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi
     127   If iCaseSensitivity = 1, comparison is case sensitive (like strcmp)
     128   If iCaseSensitivity = 2, comparison is not case sensitive (like strcmpi
    129129                                or strcasecmp)
    130    If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
     130   If iCaseSensitivity = 0, case sensitivity is default of your operating system
    131131    (like 1 on Unix, 2 on Windows)
    132132*/
  • vendor/current/lib/zlib/contrib/minizip/zip.c

    r414 r740  
    100100  uLong  avail_in_this_block;
    101101  uLong  filled_in_this_block;
    102   uLong  unused; /* for future use and alignement */
     102  uLong  unused; /* for future use and alignment */
    103103  unsigned char data[SIZEDATA_INDATABLOCK];
    104104} linkedlist_datablock_internal;
     
    118118
    119119    uLong pos_local_header;     /* offset of the local header of the file
    120                                      currenty writing */
     120                                     currently writing */
    121121    char* central_header;       /* central header data for the current file */
    122122    uLong size_centralheader;   /* size of the central header for cur file */
    123123    uLong flag;                 /* flag of the file currently writing */
    124124
    125     int  method;                /* compression method of file currenty wr.*/
     125    int  method;                /* compression method of file currently wr.*/
    126126    int  raw;                   /* 1 for directly writing raw data */
    127127    Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/
  • vendor/current/lib/zlib/contrib/puff/puff.c

    r414 r740  
    586586 *   the list of code lengths, a 0 symbol means no code, a 1..15 symbol means
    587587 *   that length, and the symbols 16, 17, and 18 are run-length instructions.
    588  *   Each of 16, 17, and 18 are follwed by extra bits to define the length of
     588 *   Each of 16, 17, and 18 are followed by extra bits to define the length of
    589589 *   the run.  16 copies the last length 3 to 6 times.  17 represents 3 to 10
    590590 *   zero lengths, and 18 represents 11 to 138 zero lengths.  Unused symbols
Note: See TracChangeset for help on using the changeset viewer.