summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/common/outbound.c7
1 files 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;
 }