Typo in nsupdate(1)
Summary
nsupdate contains several typos in the help message.
Codename
Tpyo of death
BIND version used
BIND 9.17.17 (Development Release) id:c50301f
Steps to reproduce
Run nsupdate(1) and type help
What is the current bug behavior?
The program displays:
quit (quit, any pending update is not sent
help (display this message_
What is the expected correct behavior?
The program should display:
quit (quit, any pending update is not sent)
help (display this message)
Relevant configuration files
None.
Relevant logs and/or screenshots
None.
Possible fixes
diff --git a/bin/nsupdate/nsupdate.c b/bin/nsupdate/nsupdate.c
index fc1c70b..fc46a85 100644
--- a/bin/nsupdate/nsupdate.c
+++ b/bin/nsupdate/nsupdate.c
@@ -2235,9 +2235,9 @@ do_next_command(char *cmdline) {
"answer (show the answer to "
"the last request)\n"
"quit (quit, any pending "
- "update is not sent\n"
+ "update is not sent)\n"
"help (display this "
- "message_\n"
+ "message)\n"
"key [hmac:]keyname secret (use TSIG to sign "
"the request)\n"
"gsstsig (use GSS_TSIG to "
Edited by Artem Boldariev