aboutsummaryrefslogtreecommitdiffstats
path: root/dumpcap.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-08-05 16:10:44 -0400
committerBill Meier <wmeier@newsguy.com>2014-08-05 20:42:21 +0000
commitf3dd7fe1eb5348922b079db2bdede700d4d28fbd (patch)
tree7382b5da9a3c1de3eba0e91aed54c087fcfea549 /dumpcap.c
parentdfe331e35e0400942d3ad9e4b5f8c84369546b6d (diff)
Fix whitespace/indentation to match editor modelines.
Change-Id: I3445ae22f10584582d465bf632942e016f5f70ca Reviewed-on: https://code.wireshark.org/review/3452 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'dumpcap.c')
-rw-r--r--dumpcap.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/dumpcap.c b/dumpcap.c
index cd329b4992..94aaca4394 100644
--- a/dumpcap.c
+++ b/dumpcap.c
@@ -68,7 +68,7 @@
#include <errno.h>
#ifdef HAVE_LIBZ
-#include <zlib.h> /* to get the libz version number */
+#include <zlib.h> /* to get the libz version number */
#endif
#include <wsutil/cmdarg_err.h>
@@ -4153,23 +4153,23 @@ out:
}
static void
-get_dumpcap_compiled_info(GString *str)
+ get_dumpcap_compiled_info(GString *str)
{
- /* Capture libraries */
- g_string_append(str, ", ");
- get_compiled_caplibs_version(str);
+ /* Capture libraries */
+ g_string_append(str, ", ");
+ get_compiled_caplibs_version(str);
- /* LIBZ */
- g_string_append(str, ", ");
+ /* LIBZ */
+ g_string_append(str, ", ");
#ifdef HAVE_LIBZ
- g_string_append(str, "with libz ");
+ g_string_append(str, "with libz ");
#ifdef ZLIB_VERSION
- g_string_append(str, ZLIB_VERSION);
+ g_string_append(str, ZLIB_VERSION);
#else /* ZLIB_VERSION */
- g_string_append(str, "(version unknown)");
+ g_string_append(str, "(version unknown)");
#endif /* ZLIB_VERSION */
#else /* HAVE_LIBZ */
- g_string_append(str, "without libz");
+ g_string_append(str, "without libz");
#endif /* HAVE_LIBZ */
}