# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1634043225 -7200
# Node ID 0f786c4a2cb2fa4cadbad9dca70f80fe4462520b
# Parent  07a72f0a32df47fd2186e7d4bf70948509ea8665
util.startup: Correctly point out unknown short param (fixes #1691)

diff -r 07a72f0a32df -r 0f786c4a2cb2 util/startup.lua
--- a/util/startup.lua	Fri Oct 01 00:21:49 2021 +0200
+++ b/util/startup.lua	Tue Oct 12 14:53:45 2021 +0200
@@ -49,7 +49,7 @@
 		end
 
 		if not param then
-			print("Unknown command-line option: "..tostring(param));
+			print("Unknown command-line option: "..tostring(raw_param));
 			print("Perhaps you meant to use prosodyctl instead?");
 			os.exit(1);
 		end