-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
traceroute/traceroute6: Cleanup usage and manual fixes #901
Conversation
Note Given the differences between our code in |
Note to self: Cross-builds are failing for aarch64-clang-12 after 9eecef0, due to clang-12 being too old? |
So this generally looks good, but the manual page could use a little attention as noted wrt line breaks. If you are really ambitious, you could re-wrap the lines now broken (the join comments I made is a minimal subset of this). Otherwise, I like it. You now have your commit bit and if you do the above, you can mark this as 'Reviewed-by: imp' when you commit it :) |
Will do! |
009efd4
to
d5791f0
Compare
Silence the warning: argument to 'sizeof' in 'strncpy' call is the same expression as the source; did you mean to use the size of the destination?" by using strlcpy() and the size of the destination (device). No functional change intended. Reviewed by: imp Pull Request: freebsd#901
Standardize the documentation and update it to reflect the current values. Reviewed by: imp Pull Request: freebsd#901
Reviewed by: imp Pull Request: freebsd#901
Reviewed by: imp Pull Request: freebsd#901
Reviewed by: imp Pull Request: freebsd#901
The man pages were originally wrapped at 72 CPL. Old school! Felt a little sad extending it to 80 chars. |
Silence the warning: argument to 'sizeof' in 'strncpy' call is the same expression as the source; did you mean to use the size of the destination?" by using strlcpy() and the size of the destination (device). No functional change intended.
Standardize the documentation and update it to reflect the current values.
d5791f0
to
d931b81
Compare
looks good now, minor tweaks to one or two of the commit messagesg. |
Silence the warning: argument to 'sizeof' in 'strncpy' call is the same expression as the source; did you mean to use the size of the destination?" by using strlcpy() and the size of the destination (device). No functional change intended. Reviewed by: imp Pull Request: #901
Standardize the documentation and update it to reflect the current values. Reviewed by: imp Pull Request: #901
Reviewed by: imp Pull Request: #901
Fix a number of warning mandoc -Tlint and igor turned up. No changes intended. Reviewed by: imp Pull Request: #901
Reviewed by: imp Pull Request: #901
Silence the warning: argument to 'sizeof' in 'strncpy' call is the same expression as the source; did you mean to use the size of the destination?" by using strlcpy() and the size of the destination (device). No functional change intended. Reviewed by: imp Pull Request: freebsd/freebsd-src#901
Standardize the documentation and update it to reflect the current values. Reviewed by: imp Pull Request: freebsd/freebsd-src#901
Reviewed by: imp Pull Request: freebsd/freebsd-src#901
Fix a number of warning mandoc -Tlint and igor turned up. No changes intended. Reviewed by: imp Pull Request: freebsd/freebsd-src#901
Reviewed by: imp Pull Request: freebsd/freebsd-src#901
The following are a series of minor fixes, intended to reduce the differences between the two utilities, in the event of a possible future unification.