Dimitry Andric
d411ccb3b2
Use NO_WCAST_ALIGN for usr.bin/ncplist, as there are many potential
...
alignment issues in it. (Though I doubt anyone still cares about
NetWare support...)
MFC after: 1 week
2011-12-17 17:04:30 +00:00
Dimitry Andric
081aa5169d
In usr.bin/mail/cmd1.c, use the correct printf length modifier for a
...
ptrdiff_t. In usr.bin/mail/main.c, cast a field width to int.
MFC after: 1 week
2011-12-17 16:30:42 +00:00
Dimitry Andric
f7c0d4c7ea
In usr.bin/indent/io.c, fix a few warnings about format strings not being literals.
...
MFC after: 1 week
2011-12-17 15:41:58 +00:00
Dimitry Andric
7818f8df2e
Correct a logic error in usr.bin/hexdump/conv.c, found by clang.
...
Whenever the conv_c() function encounters an incomplete multibyte char,
it peeks ahead. It also sets p to peekbuf, to indicate it is still
processing the incomplete character.
However, on the next retry, it compares buf against peekbuf, which
always returns false, since both buf and peekbuf are local char arrays,
whose addresses are never the same.
Fix this by comparing against p instead, which was the intention. Also
turn peekbuf into an array of u_char, to prevent conversion warnings.
MFC after: 1 week
2011-12-17 15:33:26 +00:00
Dimitry Andric
7853817de3
More fixes for correct printf length modifiers usr.bin/gprof.
...
MFC after: 1 week
2011-12-17 14:51:24 +00:00
Dimitry Andric
d16752d1ae
In usr.bin/gprof/aout.c, use the correct printf length modifier for a
...
uint32_t.
MFC after: 1 week
2011-12-17 14:37:41 +00:00
Dimitry Andric
f666b9058d
In usr.bin/csup/proto.c, use the correct printf length modifier to print
...
an off_t.
MFC after: 1 week
2011-12-17 13:52:53 +00:00
Dimitry Andric
582ad8aebf
In usr.bin/csup/auth.c, use the correct number of bytes for zeroing the
...
shared secret, and use long long format to snprintf a time_t.
MFC after: 1 week
2011-12-17 13:14:44 +00:00
Dimitry Andric
f3fbaba136
In usr.bin/mt/mt.c, the c_code member of struct commands should really
...
be an unsigned long, since it will contain values of ioctl request
codes. On 64-bit arches, these will not fit into an int.
MFC after: 1 week
2011-12-17 02:23:30 +00:00
Dimitry Andric
940695fffb
In usr.bin/tar/tree.c, if you really want to poke to NULL, you must use
...
volatile, otherwise the indirection will not be emitted.
MFC after: 1 week
2011-12-17 01:36:50 +00:00
Max Khon
94f176ebd4
Revert r228521: sometimes job output is lost
...
(see tools/regression/usr.bin/make/execution/joberr test).
openpty(fd + 0, fd + 1,...) version does not have this problem but
it sometimes enters an infinite sleep in "ttywait" state in tty_drain()
when make(1) closes slave pty.
2011-12-15 06:25:19 +00:00
Max Khon
366cd46cbe
job make: if stdout is a tty create a pty when running a command.
2011-12-15 03:13:23 +00:00
Ed Schouten
f6ab8089c6
Replace __const by const in all non-contributed source code.
...
As C1X is close to being released, there is no need to wrap around a
feature that is already part of C90. Most of these files already use
`const' in different placed as well.
2011-12-13 13:32:56 +00:00
Mikolaj Golub
cc1ff620b9
Make 64-bit procstat output ELF auxiliary vectors for 32-bit processes.
...
Reviewed by: kib
MFC after: 1 week
2011-12-12 22:01:33 +00:00
Mikolaj Golub
de21500d6a
Make procstat -l output similar to the output of limits(1).
...
Suggested by: jhb
MFC after: 1 week
2011-12-12 21:41:05 +00:00
Ed Schouten
a02c83afc5
Add more static keywords to truss(1) source code.
...
There are some tables in the source code that are only used by the
individual source files themselves. Therefore there is no need to export
them.
2011-12-10 18:27:55 +00:00
Ed Schouten
8375d51296
Add missing "static const" to long options table.
...
This table is only used in this C file and passed to getopt_long(), so
we can safely add static and const to it.
2011-12-10 18:21:03 +00:00
Ed Schouten
516c8ed9dd
Replace char copyright[] by static const char copyright[].
...
It seems the latter is used throughout the tree.
2011-12-10 18:11:06 +00:00
Glen Barber
653fa5218a
Update du(1):
...
- Sort arguments alphabetically where appropriate
- '-B blocksize' is not mutually exclusive of '-h|-k|-m'
- Mention '-t' in synopsis
- Other wording improvements
- Update usage() output to reflect the new synopsis [1]
- Other miscellaneous improvements
PR: 162438
Submitted by: arundel
Reviewed by: Benjamin Kaduk (kaduk ! mit.edu), jhb[1] (original version)
MFC after: 1 week
2011-12-09 02:30:56 +00:00
Gabor Kovesdan
6f4cbf7cb3
- Match GNU behavior of exit code
...
- Rename variable that has a different meaning now
PR: bin/162930
Submitted by: Jan Beich <jbeich@tormail.net>
MFC after: 1 week
2011-12-07 12:25:28 +00:00
Mikolaj Golub
cc43fe5b46
Don't output a warning if kern.proc.auxv sysctl has returned EPERM.
...
After r228288 this is rather a normal situation.
MFC after: 1 week
2011-12-05 19:39:15 +00:00
Konstantin Belousov
97695ad4cd
Use explicit information from the kernel to detect the traps due to
...
syscall entry and leave.
Based on submision by: Dan Nelson <dnelson allantgroup com>
MFC after: 1 month
2011-12-04 18:43:09 +00:00
Max Khon
019bd13977
- Fix segmentation fault when running "+command" when run with -jX -n due
...
to Compat_RunCommand() being called with `cmd' that is not on the node->commands
list
- Make ellipsis ("..." command) handling consistent: check for "..." command
in job make after variables expansion to match compat make behavior
- Fix empty command handling (after variables expansion and @+- modifiers
are processed): now empty commands are ignored in compat make and are not
printed in job make case
- Bump MAKE_VERSION to 5-2011-11-30-0
2011-11-30 18:07:38 +00:00
Gabor Kovesdan
68f42e1da4
- Create links to the xz and lzma versions even if BSD grep is not the
...
default. Nor GNU nor liblzma in base provides such functionality so
it may be useful.
MFC after: 3 days
2011-11-28 20:16:55 +00:00
Gabor Kovesdan
ede01be2f2
- Call warnx() instead of errx() if a directory is not readable when using
...
a recursive search. This is the expected behavior instead of aborting.
PR: bin/162907
Submitted by: Jan Beich <jbeich@tormail.net>
MFC after: 3 days
2011-11-28 20:04:26 +00:00
Gabor Kovesdan
f0c94259d6
- Fix behavior of --null to match GNU grep
...
PR: bin/162906
Submitted by: Jan Beich <jbeich@tormail.net>
MFC after: 3 days
2011-11-28 20:00:31 +00:00
Mikolaj Golub
447fdbd073
Update SYNOPSIS to include the flags added recently.
...
Spotted by: jhb
2011-11-28 19:45:47 +00:00
Baptiste Daroussin
a841e1ebe6
Synchronize with laster version of m4 from OpenBSD and NetBSD
...
This bring better compatibility with gnum4
Reviewed by: cognet
Approved by: cognet
Obtained from: OpenBSD, NetBSD
2011-11-28 13:32:39 +00:00
Mikolaj Golub
6bfefd99ce
Cast a_val on printing. This fixes build on mips.
2011-11-28 07:09:29 +00:00
Mikolaj Golub
d3c10c5235
Make proctstat -x output more readable.
...
This also fixes the issue, spotted by mdf, with values that were
printed as decimal and had hex prefixes.
Discussed with: kib, rwatson
MFC after: 2 weeks
2011-11-27 15:53:58 +00:00
Mikolaj Golub
598585e835
usr.bin/procstat
...
Add -l flag to display resource limits.
PR: bin/161257
Reviewed by: kib
MFC after: 2 weeks
2011-11-24 20:54:06 +00:00
Mikolaj Golub
7294321939
Fix build, hopefully.
...
Reviewed by: kib
2011-11-23 07:34:09 +00:00
Mikolaj Golub
e99272c732
Add new options, -e and -x, to display process environment variables
...
and ELF auxiliary vectors.
MFC after: 2 weeks
2011-11-22 20:59:52 +00:00
Warner Losh
34b7df97a3
Add helpful clarification text. While not strictly necessary, these
...
few words make this man page much easier to understand without
re-reading prior parts of the man page.
2011-11-16 22:02:59 +00:00
Eitan Adler
14517324d0
- add a missing "be" and "in"
...
- fix other errors introduced when committing r226436
- add 'function' to a sentence where it makes sense
Submitted by: delphij
Submitted by: dougb
Submitted by: jhb
Approved by: dougb
Approved by: jhb
2011-11-11 22:27:09 +00:00
Greg Lehey
415f031163
Tidy up command line processing:
...
- Add ? option to optstring.
- Sort options alphabetically.
- Vertical space.
Tidy up usage() function.
Bring man page in sync with source.
Ensure that debug code is only executed with the -d option.
Submitted by: Christiane Yeardley
2011-11-09 01:40:46 +00:00
Mikolaj Golub
729bfad6a4
Bumb date after r227317.
...
Reminded by: pluknet
2011-11-08 19:14:15 +00:00
Ed Schouten
66c5875a45
Simplify getopt switch parsing.
...
Only one of these flags can be set. Just add them together and check the
value. Also, get rid of the listall variable. The code is already filled
with direct *flag-comparisons.
Obtained from: Alexander Best (though modified)
2011-11-08 11:36:46 +00:00
Mikolaj Golub
82841ae6f8
When displaying process virtual memory mappings print superpage
...
mapping flag.
Submitted by: Mel Flynn <mel.flynn+fbsd.hackers@mailing.thruhere.net>
Reviewed by: alc, rwatson
2011-11-07 21:16:19 +00:00
Ed Schouten
0c66031ab1
Remove unneeded CFLAGS.
...
Such optimisations should not be performed in this Makefile. Also, uqs@
suggested they have no effect, because the checksum of the resulting
binary is unchanged.
Discussed with: gabor, uqs
2011-11-07 09:42:22 +00:00
Ed Schouten
a35353de88
Partially revert r227233.
...
The privs.h header is not only used by at(1), it's also used by
atrun(8). Just let the code the way it used to be (for now).
Reported by: kwm, tinderbox
Hat to: me
2011-11-06 20:30:21 +00:00
Ed Schouten
641835f465
Mark global functions and/or variables in xstr(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:50:39 +00:00
Ed Schouten
e5ec905575
Mark global functions and/or variables in whois(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:50:33 +00:00
Ed Schouten
94cd938578
Mark global functions and/or variables in which(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:50:26 +00:00
Ed Schouten
558b00f5a1
Mark global functions and/or variables in whereis(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:50:19 +00:00
Ed Schouten
48ef17602b
Mark global functions and/or variables in unifdef(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:50:00 +00:00
Ed Schouten
e7b3338485
Mark global functions and/or variables in paste(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:49:53 +00:00
Ed Schouten
df6dd6933d
Mark global functions and/or variables in m4(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:49:48 +00:00
Ed Schouten
86350df6fe
Mark global functions and/or variables in lam(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:49:41 +00:00
Ed Schouten
357050fc0e
Mark global functions and/or variables in fstat(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:49:36 +00:00
Ed Schouten
cb230716e3
Mark global functions and/or variables in expand(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:49:30 +00:00
Ed Schouten
43ad4b4511
Mark global functions and/or variables in enigma(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:49:23 +00:00
Ed Schouten
305700d983
Mark global functions and/or variables in compress(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:49:16 +00:00
Ed Schouten
8d34a0b7bc
Mark global functions and/or variables in comm(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:49:10 +00:00
Ed Schouten
c24aea83fa
Mark global functions and/or variables in checknr(1) static where possible.
...
This allows compilers and static analyzers to more thorough analysis.
2011-11-06 18:49:03 +00:00
Ed Schouten
f64efe8b60
Add missing static keywords to at(1).
...
While there, tidy up the privs.h part, where at.c has to #define to
declare some globals. Also group static and non-static global variables
in at.c.
2011-11-06 17:32:29 +00:00
Ed Schouten
ac75fa8849
Mark the structure fields as const.
...
This allows us to simply place these strings as constants in the table
itself, letting the compiler decide to simply merge duplicate strings.
2011-11-06 17:20:44 +00:00
Ed Schouten
6291cd02cb
Correct the change made in r227166.
...
This function is only compiled in when building WITH_AUDIT.
2011-11-06 09:09:45 +00:00
Ed Schouten
15f9b56845
Add missing static keywords to xinstall(1)
2011-11-06 08:19:07 +00:00
Ed Schouten
8df975a218
Add missing static keywords to wc(1)
2011-11-06 08:19:00 +00:00
Ed Schouten
d7698e0766
Add missing static keywords to wall(1)
2011-11-06 08:18:55 +00:00
Ed Schouten
d11cba9c89
Add missing static keywords to w(1)
2011-11-06 08:18:47 +00:00
Ed Schouten
bb39d408b1
Add missing static keywords to vis(1)
2011-11-06 08:18:42 +00:00
Ed Schouten
4ae55b63c3
Add missing static keywords to uuencode(1)
2011-11-06 08:18:35 +00:00
Ed Schouten
69c5bce6ee
Add missing static keywords to usbhidctl(1)
2011-11-06 08:18:30 +00:00
Ed Schouten
793cdace4d
Add missing static keywords to usbhidaction(1)
2011-11-06 08:18:23 +00:00
Ed Schouten
90a29505f5
Add missing static keywords to units(1)
2011-11-06 08:18:17 +00:00
Ed Schouten
7f3cfdffbc
Add missing static keywords to uniq(1)
2011-11-06 08:18:11 +00:00
Ed Schouten
73827c1062
Add missing static keywords to unexpand(1)
2011-11-06 08:18:05 +00:00
Ed Schouten
4b7373b886
Add missing static keywords to uname(1)
2011-11-06 08:17:59 +00:00
Ed Schouten
d9079e3b3e
Add missing static keywords to ul(1)
2011-11-06 08:17:53 +00:00
Ed Schouten
4fbf47feda
Add missing static keywords to tsort(1)
2011-11-06 08:17:47 +00:00
Ed Schouten
1dca6e4e8a
Add missing static keywords to tr(1)
2011-11-06 08:17:42 +00:00
Ed Schouten
85528ab71d
Add missing static keywords to tee(1)
2011-11-06 08:17:35 +00:00
Ed Schouten
257edbd36a
Add missing static keywords to tcopy(1)
2011-11-06 08:17:29 +00:00
Ed Schouten
b8d48d6233
Add missing static keywords to talk(1)
2011-11-06 08:17:23 +00:00
Ed Schouten
c7c497f1c5
Add missing static keywords to tail(1)
2011-11-06 08:17:17 +00:00
Ed Schouten
973aa6bc58
Add missing static keywords to split(1)
2011-11-06 08:17:11 +00:00
Ed Schouten
cfbd8d469b
Add missing static keywords to seq(1)
2011-11-06 08:17:05 +00:00
Ed Schouten
af397f37ab
Add missing static keywords to rwho(1)
2011-11-06 08:16:59 +00:00
Ed Schouten
31dd0180e9
Add missing static keywords to rwall(1)
2011-11-06 08:16:53 +00:00
Ed Schouten
6ebcee2952
Add missing static keywords to rusers(1)
2011-11-06 08:16:47 +00:00
Ed Schouten
5988030025
Add missing static keywords to ruptime(1)
2011-11-06 08:16:41 +00:00
Ed Schouten
43420d1cad
Add missing static keywords to rs(1)
2011-11-06 08:16:35 +00:00
Ed Schouten
865ff60987
Add missing static keywords to quota(1)
2011-11-06 08:16:29 +00:00
Ed Schouten
4f5e9a1a57
Add missing static keywords to pr(1)
2011-11-06 08:16:24 +00:00
Ed Schouten
0e5d3f8e6c
Add missing static keywords to mt(1)
2011-11-06 08:16:18 +00:00
Ed Schouten
23f01dcfd1
Add missing static keywords to ministat(1)
2011-11-06 08:16:11 +00:00
Ed Schouten
efd6c7ccc9
Add missing static keywords to make(1)
2011-11-06 08:16:06 +00:00
Ed Schouten
76de43968b
Add missing static keywords to look(1)
2011-11-06 08:15:59 +00:00
Ed Schouten
481bce6c91
Add missing static keywords to logger(1)
2011-11-06 08:15:53 +00:00
Ed Schouten
20a9b7ee4e
Add missing static keywords to lock(1)
2011-11-06 08:15:48 +00:00
Ed Schouten
7f3271b68c
Add missing static keywords to last(1)
2011-11-06 08:15:41 +00:00
Ed Schouten
6c9f961574
Add missing static keywords to join(1)
2011-11-06 08:15:35 +00:00
Ed Schouten
f82c82df6d
Add missing static keywords to id(1)
2011-11-06 08:15:30 +00:00
Ed Schouten
385c1d290c
Add missing static keywords to fold(1)
2011-11-06 08:15:23 +00:00
Ed Schouten
d2aa301d2e
Add missing static keywords to du(1)
2011-11-06 08:15:17 +00:00
Ed Schouten
267265e0dd
Add missing static keywords to dc(1)
2011-11-06 08:14:57 +00:00
Ed Schouten
41b662c583
Add missing static keywords to cut(1)
2011-11-06 08:14:51 +00:00
Ed Schouten
b168c3c84b
Add missing static keywords to csplit(1)
2011-11-06 08:14:45 +00:00
Ed Schouten
9ff0c16a5b
Add missing static keywords to cpuset(1)
2011-11-06 08:14:40 +00:00
Ed Schouten
316b87cb40
Add missing static keywords to column(1)
2011-11-06 08:14:34 +00:00
Ed Schouten
78ea30bb9b
Add missing static keywords to colcrt(1)
2011-11-06 08:14:28 +00:00
Ed Schouten
ab8d971c3a
Add missing static keywords to col(1)
2011-11-06 08:14:22 +00:00
Ed Schouten
8ef8574d1a
Add missing static keywords to cmp(1)
2011-11-06 08:14:16 +00:00
Ed Schouten
1a5054d3fb
Add missing static keywords to catman(1)
2011-11-06 08:14:09 +00:00
Ed Schouten
f3d61b0c62
Add missing static keywords to cap_mkdb(1)
2011-11-06 08:14:03 +00:00
Ed Schouten
5227c53347
Add missing static keywords to c99(1)
2011-11-06 08:13:58 +00:00
Ed Schouten
9e43b5a097
Add missing static keywords to banner(1)
2011-11-06 08:13:51 +00:00
Jilles Tjoelker
6e678e0ce9
lint: Fix lseek() argument order.
...
Because SEEK_SET is 0, this seems to have no effect on the generated code.
PR: bin/160806
Submitted by: Henning Petersen <henning dot petersen at t-online dot de>
Obtained from: NetBSD
2011-11-05 22:25:15 +00:00
Jilles Tjoelker
4f6d8894a4
make(1): obj dirs are physical paths so write pwd -P
rather than pwd
.
...
Regular pwd may return a pathname containing symlinks, but make does not use
such pathnames.
2011-11-05 21:32:17 +00:00
Doug Barton
f97d52be64
Fix typo from r226927
...
Submitted by: scf
2011-10-30 20:55:32 +00:00
Doug Barton
2bb6453662
Add birth date for Ken Thompson
...
Add birth and death dates for Steve Jobs
Update birth and add death date for Dennis Ritchie
PR: bin/162157
Submitted by: Niclas Zeising <niclas.zeising@gmail.com>
2011-10-30 04:04:40 +00:00
Doug Barton
041a3f80fc
Add a reminder about quarterly status report due dates
...
Reviewed by: danger
2011-10-29 18:16:29 +00:00
Andrey A. Chernov
7d3c2941c4
Reword '}' description to sound more clear.
...
Submitted by: dougb
MFC after: 7 days
2011-10-29 06:13:47 +00:00
Andrey A. Chernov
c7d7f9a140
Update '}' description to reflect reality (and POSIX)
...
PR: 96236
Submitted by: "Andreas Kohn" <andreas@syndrom23.de>
MFC after: 7 days
2011-10-28 20:28:13 +00:00
Sergey Kandaurov
85714224ae
Add the XSI option -b to show date of the last reboot.
...
That required to increase the LINE field to fit the output of -b.
While here, change the row() function to take a const argument.
In collaboration with: ed
2011-10-28 12:47:37 +00:00
Ed Schouten
8e2eadb208
Print INIT_PROCESS and LOGIN_PROCESS entries as well.
...
Even though our implementation of utmpx never emits these types of
records, they are part of POSIX. Do print them when they show up in the
database files.
While there, also print the type number of unsupported records.
2011-10-27 16:20:29 +00:00
Gabor Kovesdan
cb47bf1448
- Fix installation when WITH_BSD_GREP is set to yes
...
Submitted by: Aleksandr Rybalko <ray@ddteam.net>
2011-10-23 16:04:07 +00:00
Tim Kientzle
e588d6dad2
Typo from previous commit. Urgh.
2011-10-22 16:53:29 +00:00
Tim Kientzle
431595df6c
Bring in the --gid --gname --uid and --uname implementation
...
from libarchive.googlecode.com.
MFC after: 3 days
2011-10-22 16:52:04 +00:00
Dimitry Andric
6122f3e60d
Upgrade our copy of llvm/clang to r142614, from upstream's release_30
...
branch. This brings us very close to the 3.0 release, which is expected
in a week or two.
MFC after: 1 week
2011-10-22 14:08:43 +00:00
Dag-Erling Smørgrav
c04743dac1
It turns out that truss also used kdump's mkioctls script, and expected
...
ioctlname() to return a pointer to the name rather than print it. This did
not show up in testing because truss had its own prototype for ioctlname(),
so it would build fine and run fine as long as the program being traced did
not issue an ioctl.
Teach mkioctls to generate different versions of ioctlname() based on its
first command-line argument.
Pointed out by: Garrett Cooper <yanegomi@gmail.com>
2011-10-21 11:08:25 +00:00
Dag-Erling Smørgrav
60e45df8ed
Fix copy-pasto in CAPFAIL_INCREASE case.
...
Noticed by: pjd
2011-10-18 09:39:41 +00:00
Dag-Erling Smørgrav
99afdfe58d
Make ktrace(1) build cleanly at WARNS level 6 by completely rethinking the
...
way in which it handles the -C, -c, -g and -p options.
MFC after: 3 weeks
2011-10-18 08:26:12 +00:00
Dag-Erling Smørgrav
e141be6f79
Revisit the capability failure trace points. The initial implementation
...
only logged instances where an operation on a file descriptor required
capabilities which the file descriptor did not have. By adding a type enum
to struct ktr_cap_fail, we can catch other types of capability failures as
well, such as disallowed system calls or attempts to wrap a file descriptor
with more capabilities than it had to begin with.
2011-10-18 07:28:58 +00:00
Ed Schouten
2a5e51fa7b
Sort header file names.
...
Spotted by: des
2011-10-17 13:54:55 +00:00
Ed Schouten
d13b008d74
Add missing #include.
...
Note to myself: don't write patches while watching a movie.
2011-10-16 19:23:43 +00:00
Ed Schouten
d2ea3bed52
Don't cast SIZE_T_MAX to off_t.
...
I focused so much on the 32-bits case where we have to cast SIZE_T_MAX
up in size, that I forgot about the 64-bits case, where off_t and size_t
are equal in size. Simply cast both numbers to uintmax_t, as we can
assume st_size is never negative.
Reported by: cperciva
2011-10-16 19:15:25 +00:00
Eitan Adler
36daf0495a
- change "is is" to "is" or "it is"
...
- change "the the" to "the"
Approved by: lstewart
Approved by: sahil (mentor)
MFC after: 3 days
2011-10-16 14:30:28 +00:00
Marcel Moolenaar
ead616352b
o Use C99 designated initializer to properly handle ELFOSABI_STANDALONE.
...
o In elf_get_byte(), cast through uint8_t and not char to avoid sign
extension.
2011-10-16 14:11:05 +00:00
Ed Schouten
49e3600b9c
Fix ncplist to build with WARNS=6.
...
Add some const and static keywords to get it all to build. Also add
missing #includes.
2011-10-16 10:00:28 +00:00
Ed Schouten
7687733bfb
Undo r226423.
...
It seems su does build without warnings, but it requires a small fix to
libbsm headers, which I have not committed to SVN yet.
2011-10-16 09:09:33 +00:00
Ed Schouten
c75216d258
Build rwho(1) with WARNS=6.
...
The only reason why it didn't build with WARNS=6, is because of some
simple to fix string formatting bugs.
MFC after: 3 months
2011-10-16 08:54:41 +00:00
Ed Schouten
03d26e9e38
Use integer to store the result of getch().
...
We need to use an integer to make the comparison against ERR work.
MFC after: 3 months
2011-10-16 08:36:10 +00:00
Ed Schouten
43f65c0c3c
Remove WARNS line. This tool builds with WARNS=6 properly.
2011-10-16 08:14:12 +00:00
Ed Schouten
1e2070ab5b
Fix build of m4 with WARNS=6.
...
Change the parser; rename `exp' to `exponent' not to collide with exp(3).
2011-10-16 08:09:17 +00:00
Ed Schouten
aa404b67bb
Remove unneeded WARNS=3 lines.
...
It seems these two tools can be built properly with WARNS=6, even on
architectures that are stricter about alignment.
2011-10-16 08:04:43 +00:00
Ed Schouten
196769ee58
Build at(1) with NO_WFORMAT instead of WARNS=1.
2011-10-16 07:57:01 +00:00
Ed Schouten
73b018e38e
Make some internal fixes to ruptime(1):
...
- Prevent possible unaligned access to struct whoent.
- Increase uptime column by one, to properly print hosts with an uptime
greater than 1000 days.
- Reduce code complexity by storing struct whod inside struct hs.
- Set WARNS to 6.
MFC after: 3 months
2011-10-16 07:36:27 +00:00
Xin LI
d9b3a15b37
According to the NetBSD foundation [1]:
...
Third parties are encouraged to change the license on any files which have
a 4-clause license contributed to the NetBSD Foundation to a 2-clause
license. We would also encourage you to inform us about these files, so
that we can continue to track the many places in which NetBSD is used.
http://www.netbsd.org/about/redistribution.html#why2clause [1]
Requested by: joel@
2011-10-16 07:35:26 +00:00
Xin LI
41cbfdc954
Partially revert r226274, the old code was right.
2011-10-16 07:05:43 +00:00
Mikolaj Golub
8d105928ec
In r225809 the intention was to send VEOF only once if STDIN was not a
...
terminal. Unfortunately the fix was incorrect and for flushtime > 0 it
keept sending VEOF.
Sent VEOF generates ^D\b\b echoed by the terminal, which was reported
in bin/161526. Note, we still send VEOF at least once. Otherwise
commands like below would hang forever:
echo 1 |script /tmp/script.out cat
PR: bin/161526
Reported by: Adrian Wontroba <aw1@stade.co.uk>, Stefan Bethke <stb@lassitu.de>
Tested by: Stefan Bethke <stb@lassitu.de>
MFC after: 3 days
2011-10-15 19:08:22 +00:00
Ed Schouten
2bd338d6c4
Fix whitespace inconsistencies in systat(1).
...
According to md5(1), the resulting binary is the same.
2011-10-15 13:20:36 +00:00
Ed Schouten
50af444a74
Put parentheses in the right place.
...
Noted by: jilles@
Broken by: me. :-(
2011-10-14 10:43:55 +00:00
Ed Schouten
b7cf00e8d9
Make nl(1) build with WARNS=6.
...
Obtained from: NetBSD
2011-10-14 07:28:39 +00:00
Ed Schouten
51b671f6de
Build last(1) and leave(1) with WARNS=6.
...
These ports were only built with WARNS=1, because they use certain
format extensions. We can use NO_WFORMAT for that instead.
2011-10-14 07:26:20 +00:00
Ed Schouten
b173dd440b
Build tr(1) with WARNS=6.
2011-10-14 07:25:20 +00:00
Ed Schouten
583458543c
Build look(1) with WARNS=6.
2011-10-14 07:24:48 +00:00
Ed Schouten
c5d693c5d0
Build finger(1) with WARNS=6.
2011-10-14 07:24:23 +00:00