aboutsummaryrefslogtreecommitdiffstats
path: root/epan/adler32.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix a bunch of warnings.Guy Harris2012-12-261-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Cast away some implicit 64-bit-to-32-bit conversion errors due to use of sizeof. Cast away some implicit 64-bit-to-32-bit conversion errors due to use of strtol() and strtoul(). Change some data types to avoid those implicit conversion warnings. When assigning a constant to a float, make sure the constant isn't a double, by appending "f" to the constant. Constify a bunch of variables, parameters, and return values to eliminate warnings due to strings being given const qualifiers. Cast away those warnings in some cases where an API we don't control forces us to do so. Enable a bunch of additional warnings by default. Note why at least some of the other warnings aren't enabled. randpkt.c and text2pcap.c are used to build programs, so they don't need to be in EXTRA_DIST. If the user specifies --enable-warnings-as-errors, add -Werror *even if the user specified --enable-extra-gcc-flags; assume they know what they're doing and are willing to have the compile fail due to the extra GCC warnings being treated as errors. svn path=/trunk/; revision=46748
* Update Free Software Foundation address.Jakub Zawadzki2012-06-281-1/+1
| | | | | | (COPYING will be updated in next commit) svn path=/trunk/; revision=43536
* name changeRonnie Sahlberg2006-05-211-2/+2
| | | | svn path=/trunk/; revision=18197
* The first argument to "adler32_bytes()" is only passed on toGuy Harris2004-12-301-1/+1
| | | | | | | "update_adler32()", and the corresponding argument is a "const unsigned char *", so that argument can be a "const unsigned char *". svn path=/trunk/; revision=12877
* Move various checksum routines and headers to epan.Guy Harris2004-09-281-0/+42
svn path=/trunk/; revision=12117