about summary refs log tree commit diff stats
path: root/src/command
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-04-27 16:13:05 +0200
committerMichael Vetter <jubalh@iodoru.org>2022-04-27 16:13:05 +0200
commit866f688621313c6996a7a49d520aac12d142fa6c (patch)
treed5b11f2a82657fa294f436d494bc9f57cd68ffaf /src/command
parentecafb6deaf19f261d7eb7e0afc1ef8cfa6104f56 (diff)
downloadprofani-tty-866f688621313c6996a7a49d520aac12d142fa6c.tar.gz
ox: print bad usage instead of custom message
Diffstat (limited to 'src/command')
-rw-r--r--src/command/cmd_funcs.c2
1 files changed, 1 insertions, 1 deletions
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;
 }