aboutsummaryrefslogtreecommitdiffstats
path: root/conditions.c
AgeCommit message (Collapse)AuthorFilesLines
2014-08-24Modify includes of config.h so that out-of-tree builds, i.e. CMakeGraham Bloice1-1/+1
don't pick up the in-tree copy. Change-Id: I7ec473876cdba1a025c52362d7f6adc62d24ce71 Reviewed-on: https://code.wireshark.org/review/3798 Petri-Dish: Graham Bloice <graham.bloice@trihedral.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Roland Knall <rknall@gmail.com> Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-11-16Reformat some lines;Bill Meier1-48/+56
Tweak some whitespace. svn path=/trunk/; revision=53361
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45015
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-02-02Include config.h in preparation of moving the definitionJörg Mayer1-0/+4
of _U_ from the compiler command line into config.h svn path=/trunk/; revision=40806
2011-09-21Fix ex "modeline" so it works;Bill Meier1-1/+1
See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5748 svn path=/trunk/; revision=39081
2010-04-28Altho no tabs, use tab-width=8 anyway.Bill Meier1-3/+3
svn path=/trunk/; revision=32591
2010-03-01Squelch some compiler warnings.Guy Harris1-1/+1
svn path=/trunk/; revision=32074
2009-11-10Removed some unused assignments.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=30920
2008-05-14When we copy strings, don't lop off the last character. Add a couple ofGerald Combs1-11/+27
warning messages. svn path=/trunk/; revision=25303
2008-05-13Fix some of the Errors/warnings detected by checkapi.Anders Broman1-4/+2
svn path=/trunk/; revision=25283
2008-01-24Fixed some strcpy -> strncpy/g_snprintf cleanups.Stig Bjørlykke1-2/+4
Removed a debug printout in t38. svn path=/trunk/; revision=24188
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-03-07Fix Coverity run 12 CID 110: Make sure we don't dereference a NULL pointer.Gerald Combs1-1/+3
svn path=/trunk/; revision=17505
2005-08-05replace malloc and alike calls by their GLib pendants -> g_mallocUlf Lamping1-12/+12
svn path=/trunk/; revision=15232
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-01-18Fix warnings found by -Wstrict-prototypesJörg Mayer1-3/+3
svn path=/trunk/; revision=9722
2002-12-03Cast const pointer arguments to "g_free()" and "g_hash_table_foreach()"Guy Harris1-2/+2
to "gpointer", so that we only get warnings when we turn on the extra GCC warning checks. svn path=/trunk/; revision=6734
2002-12-02Don't cast away constness, and fix variable and structure memberGuy Harris1-2/+2
qualifiers as necessary to ensure that we don't have to. "strcmp()", "strcasecmp()", and "memcmp()" don't return booleans; don't test their results as if they did. Use "guint8", not "guchar", for a pointer to (one or more) 8-bit bytes. Update Michael Tuexen's e-mail address. svn path=/trunk/; revision=6726
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-31/+31
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2002-05-04From Joerg Mayer: mark an unused argument as such.Guy Harris1-2/+2
svn path=/trunk/; revision=5382
2001-12-04Support for stopping capture at specified capture file size or captureGuy Harris1-0/+205
duration, from Thomas Wittwer and Matthias Nyffenegger. svn path=/trunk/; revision=4322