Changeset

5295:eef393a37e38

prosodyctl: Pop arg items after use. Fixes #306
author Kim Alvefur <zash@zash.se>
date Wed, 09 Jan 2013 20:40:44 +0100
parents 5294:87f07dd0bbfb
children 5296:78b7a4ad2f32
files prosodyctl
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/prosodyctl	Wed Jan 09 17:56:40 2013 +0100
+++ b/prosodyctl	Wed Jan 09 20:40:44 2013 +0100
@@ -67,10 +67,10 @@
 	local filename;
 	if arg[1] == "--config" and arg[2] then
 		table.insert(filenames, arg[2]);
-		table.remove(arg, 1); table.remove(arg, 1);
 		if CFG_CONFIGDIR then
 			table.insert(filenames, CFG_CONFIGDIR.."/"..arg[2]);
 		end
+		table.remove(arg, 1); table.remove(arg, 1);
 	else
 		for _, format in ipairs(config.parsers()) do
 			table.insert(filenames, (CFG_CONFIGDIR or ".").."/prosody.cfg."..format);