Re: use getnameinfo in bgpd to print addresses

2021-01-04 Thread Kris Katterjohn
s doesn't mean that the len in the second arg is evaluated after the addr2sa call. The args will be fully evaluated before calling log_sockaddr, but the order of evaluation is unspecified. Kris Katterjohn

nm(1): fix error message typo

2020-11-20 Thread Kris Katterjohn
I spotted a little typo in an nm(1) error message. Kris Katterjohn Index: elf.c === RCS file: /cvs/src/usr.bin/nm/elf.c,v retrieving revision 1.37 diff -u -p -r1.37 elf.c --- elf.c 14 Dec 2018 19:56:02 - 1.37

tmux(1): fix args_string_percentage error strings

2020-05-23 Thread Kris Katterjohn
complains that the height is too large. A small diff to fix this is below. Cheers, Kris Katterjohn Index: usr.bin/tmux/arguments.c === RCS file: /cvs/src/usr.bin/tmux/arguments.c,v retrieving revision 1.32 diff -u -p -r1.32 a

tmux(1): fix resize-pane -y error message

2020-05-23 Thread Kris Katterjohn
Hey, A small diff is below to fix the error message from tmux(1) when an invalid value is passed to resize-pane -y. It has mentioned "width" instead of "height". Cheers, Kris Katterjohn Index: usr.bin/tm

Fix EACCESS typos

2019-07-29 Thread Kris Katterjohn
Hi, The following diff fixes EACCESS typos (EACCESS -> EACCES) in the man pages for crypt_checkpass(3), execve(2) and pledge(2), and also in a comment in sys/kern/kern_unveil.c. This diff does not mess with tftp stuff (which actually does use its own EACCESS). Cheers, Kris Katterjohn In

Re: [PATCH] cu(1) man page: ~>, ~D and restricted mode

2018-08-04 Thread Kris Katterjohn
p;". Whatever you (or anyone else) thinks is best is fine with me. > i'll commit it tomorrow if no one has objected. Cool. Thanks again. Cheers, Kris Katterjohn

Re: [PATCH] cu(1) man page: ~>, ~D and restricted mode

2018-08-04 Thread Kris Katterjohn
On Sat, Aug 04, 2018 at 09:05:36PM +0100, Jason McIntyre wrote: > fair enough. could you submit an updated diff, please? Sure. New diff below. I used the same style that appears in the description of the restricted shell in the ksh man page. Cheers, Kris Katterjohn Index: c

Re: [PATCH] cu(1) man page: ~>, ~D and restricted mode

2018-08-04 Thread Kris Katterjohn
lained to be an escape character yet. I don't think that's major though, and removing repeated text would be nice. Cheers, Kris Katterjohn

[PATCH] cu(1) man page: ~>, ~D and restricted mode

2018-08-03 Thread Kris Katterjohn
Hey, The cu(1) tilde escapes ~C, ~R, ~X, ~$ and ~> are not allowed in restricted mode; however, the man page states that ~D is not allowed and omits the fact that ~> is not allowed. I have a patch below to correct this. Cheers, Kris Katterjohn Index

Re: [PATCH] jot(1): negative and overflowing reps

2018-07-31 Thread Kris Katterjohn
I agree. I only used two spaces for consistency with the error message for a bad s value (and, well, because the error message I'm replacing used two spaces as well). Cheers, Kris Katterjohn

[PATCH] jot(1): negative and overflowing reps

2018-07-31 Thread Kris Katterjohn
scanf when converting reps (like the way a precision value is converted and checked). Since reps is a long, bound it by 0 and LONG_MAX. Cheers, Kris Katterjohn Index: jot.c === RCS file: /cvs/src/usr.bin/jot/jot.c,v retrieving revision 1.

[PATCH] find(1) man page, source comment: assumed -print

2018-07-30 Thread Kris Katterjohn
. (These primaries can be tested and/or you can see where isoutput is set to 1 in function.c.) I have a patch below to correct these. Cheers, Kris Katterjohn Index: find.1 === RCS file: /cvs/src/usr.bin/find/find.1,v retrieving revision

[PATCH] find(1) man page: -exec evaluation

2018-07-30 Thread Kris Katterjohn
to make the wording consistent with other parts of the man page. Cheers, Kris Katterjohn Index: find.1 === RCS file: /cvs/src/usr.bin/find/find.1,v retrieving revision 1.93 diff -u -p -r1.93 find.1 --- find.1 3 Jan 2017 22:19:31