From 0297da4d6e2cb4513aa3d864c6218b5b8b11ec68 Mon Sep 17 00:00:00 2001 From: TingPing Date: Thu, 16 Jan 2014 00:46:49 -0500 Subject: [PATCH] Fix warning when built without plugins --- src/common/outbound.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/common/outbound.c b/src/common/outbound.c index 7910eed4..34e44a7d 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -2506,8 +2506,11 @@ load_perform_file (session *sess, char *file) static int cmd_load (struct session *sess, char *tbuf, char *word[], char *word_eol[]) { - char *error, *arg, *file, *buf; + char *file, *buf; +#ifdef USE_PLUGIN + char *error, *arg; int len; +#endif if (!word[2][0]) return FALSE; @@ -2551,10 +2554,10 @@ cmd_load (struct session *sess, char *tbuf, char *word[], char *word_eol[]) return TRUE; } -#endif sprintf (tbuf, "Unknown file type %s. Maybe you need to install the Perl or Python plugin?\n", word[2]); PrintText (sess, tbuf); +#endif return FALSE; }