aboutsummaryrefslogtreecommitdiffstats
path: root/editcap.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-18 19:24:34 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-18 19:24:34 +0000
commit38a55164c27c444b6737f48eddae29fda08dc7e1 (patch)
treea301b915e0508c04be7956a211d1242aebf7efdd /editcap.c
parent2d72d0d25edfd48227062c781c17cbc88da92c2b (diff)
Only declare failure_message() if we HAVE_PLUGINS (since it's only used when that's the case).
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27051 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'editcap.c')
-rw-r--r--editcap.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/editcap.c b/editcap.c
index 88a5e16ed3..b91902cc0b 100644
--- a/editcap.c
+++ b/editcap.c
@@ -372,6 +372,7 @@ list_encap_types(void) {
}
}
+#ifdef HAVE_PLUGINS
/*
* Don't report failures to load plugins because most (non-wiretap) plugins
* *should* fail to load (because we're not linked against libwireshark and
@@ -382,6 +383,7 @@ failure_message(const char *msg_format _U_, va_list ap _U_)
{
return;
}
+#endif
int
main(int argc, char *argv[])