From 866f688621313c6996a7a49d520aac12d142fa6c Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Wed, 27 Apr 2022 16:13:05 +0200 Subject: [PATCH] ox: print bad usage instead of custom message --- src/command/cmd_funcs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c index b398f3c3..a74f37eb 100644 --- a/src/command/cmd_funcs.c +++ b/src/command/cmd_funcs.c @@ -7695,7 +7695,7 @@ cmd_ox(ProfWin* window, const char* const command, gchar** args) cons_show("JID and OpenPGP Key ID are required"); } } else { - cons_show("OX not implemented"); + cons_bad_cmd_usage(command); } return TRUE; }