diff options
author | Michael Vetter <jubalh@iodoru.org> | 2022-04-27 16:13:05 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2022-04-27 16:13:05 +0200 |
commit | 866f688621313c6996a7a49d520aac12d142fa6c (patch) | |
tree | d5b11f2a82657fa294f436d494bc9f57cd68ffaf /src/command | |
parent | ecafb6deaf19f261d7eb7e0afc1ef8cfa6104f56 (diff) | |
download | profani-tty-866f688621313c6996a7a49d520aac12d142fa6c.tar.gz |
ox: print bad usage instead of custom message
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/cmd_funcs.c | 2 |
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; } |