drochner
360dbbc86f
make bpf stats #ifndef SMALL,
...
fixes build of x_netstat
2005-09-14 15:35:26 +00:00
wiz
2f0ee62bbb
According to rwhod(8), file names are actually /var/rwho/whod.*
2005-09-12 18:35:32 +00:00
christos
e64d9da627
Rewrite a macro in order to eliminate an unused global variable (Liam Foy)
2005-09-12 16:16:23 +00:00
wiz
aa81fc094a
Use better section header. From YOMURA Masanori in private mail.
2005-09-11 23:30:20 +00:00
wiz
a56a69295c
Remove unneeded macro default arguments. From YOMURA Masanori in private mail.
2005-09-11 23:29:44 +00:00
wiz
013b8f4ef7
Use .Nm instead of the verbose program name. From YOMURA Masanori in private mail.
2005-09-11 23:28:55 +00:00
wiz
17d58c1431
Argument is address_family, not "address family". From YOMURA Masanori in private mail.
2005-09-11 23:26:35 +00:00
wiz
2e504179eb
Mark up authors with .An. From YOMURA Masanori in private mail.
2005-09-11 23:26:14 +00:00
wiz
30fa9d9a04
Mark up authors with .An. From YOMURA Masanori in private mail.
...
While here, replace Xrefs to itself with .Nm.
2005-09-11 23:25:32 +00:00
wiz
3c0c4bb078
Fix typos in file names. From YOMURA Masanori in private mail.
2005-09-11 23:23:56 +00:00
wiz
9a30a26518
We have spell again, xref it. From YOMURA Masanori in private mail.
2005-09-11 23:22:03 +00:00
wiz
b5e0c3219f
Punctuation fix. From YOMURA Masanori in private mail.
2005-09-11 23:20:12 +00:00
wiz
ad44d18838
Argument is address_family, not "address family". From YOMURA Masanori in private mail.
2005-09-11 23:19:27 +00:00
wiz
60bf82edce
Fix Xref. End sentence with a dot. From YOMURA Masanori in private mail.
2005-09-11 23:18:42 +00:00
wiz
c825c1ecf5
When marking up "C", use .Tn consisntently. From YOMURA Masanori in private mail.
2005-09-11 23:17:34 +00:00
wiz
2ae4fd55cf
It is "home_dir:shell", not "home_dir_shell". From YOMURA Masanori in private mail.
2005-09-11 23:16:15 +00:00
wiz
01d8cf4ba8
Use more markup. From YOMURA Masanori in private mail.
...
While here: new sentence, new line; |fmt; s/.br/.Pp/
2005-09-11 23:15:20 +00:00
wiz
3025498c62
Use correct macro. From YOMURA Masanori in private mail.
2005-09-11 23:11:48 +00:00
wiz
775247d100
Punctuation nits.
2005-09-10 22:14:52 +00:00
jmmv
ec93365612
Initial addition of tmpfs, an efficient memory file-system. This project
...
was developed as part of Google's Summer of Code 2005 program. This
change adds the kernel code, the mount_tmpfs utility, a regression test
suite and does all other related changes to integrate these.
The file-system is still *experimental*. Therefore, it is disabled by
default in all kernels. However, as typically done, a commented-out
entry is added in them to ease its setup.
Note that I haven't commited the required mountd(8) changes to be able
to export tmpfs file-systems because NFS support is still very unstable
and because, before enabling it, I'd like to do some other changes.
OK'ed by my project mentor, William Studenmund (wrstuden@).
2005-09-10 19:20:48 +00:00
martin
6fd5c01546
Move package/cinclude/include handling from the parser to the scanner,
...
where it belongs. This has the side effect of fixing PR toolchain/30903.
2005-09-10 15:38:46 +00:00
blymn
9e306bafdf
Remove message when no tape drives found
2005-09-10 11:10:21 +00:00
rpaulo
d900564544
PR misc/31280: man 8 modstat is referencing itself. By Stefan Schumacher.
2005-09-09 22:47:26 +00:00
wiz
685850e192
Grammar fix.
2005-09-09 20:27:26 +00:00
aymeric
377bb2d9d8
bump to nb15:
...
. we now handle ^C correctly in all cases
. blanks and alnum chars are ignored in the shellmeta option, as the code
brokenly said it should
. \ can be used to escape any (special) character in file names
2005-09-06 21:54:10 +00:00
aymeric
44208cd8f1
In argv_exp3() where we cut a line into args, check for '\' as the escape
...
character instead of using the IS_ESCAPE() macro which tests for ^V because the
former is mandated by the standards, and the latter is insane.
This is a very small part in addressing PR bin/26046 by lukem@.
Before, in order to escape a special character, you had to use a literal ^V,
which is type ^V twice before the character; whereas now, you use \.
Because the fix will remain partial for a while, you have to remove \ from
your shellmeta option otherwise the \ is swallowed by the invoked shell that
handles arguments expansion.
Please complain if you want ^V^V to also work, but please don't call me a
heretic.
2005-09-06 21:50:51 +00:00
aymeric
3065f3379c
From code inspection, nvi had the undocumented and non-working functionality
...
of ignoring alphanumerical and blank characters from the shellmeta option.
The former code was using a character pointed to by a pointer as a boolean
to check whether to enable this functionality, but in the meantime the pointer
was used for something else. Introduce a variable for this boolean so that
the functionality actually works.
2005-09-06 21:36:10 +00:00
aymeric
0eceae0438
Finally handle ^C the correct way. This indeed requires to separate the case
...
of text-recording input (usually text in insert mode) from the other cases
(e.g. ex command input). If recording, morph to escape key so that the input
is correctly finished for a potential replay; if not, simply bail out and
notify that something wrong occurs. Callers will cope.
The previous fix could make ^C sometimes produce a file completion
or a command edition, depending on the settings of the user.
I think this is the correct fix for since closed PR bin/11544 by pooka@. ;-)
2005-09-06 21:30:36 +00:00
aymeric
68d2948889
when reading an ex command within visual mode with v_tcmd(), check that
...
the termination value of v_tcmd() is alright. Abort the command otherwise.
Until the next commit in vi/v_txt.c, this is a noop.
2005-09-06 21:21:25 +00:00
hubertf
105b456cb7
Mention pwhash(1) in a few places,
...
suggested in PR 31125 by Stefan Schumacher.
2005-09-05 03:37:14 +00:00
elad
cf3a38f563
Revert previous commit. I forgot we already do that. :)
2005-09-04 21:18:33 +00:00
elad
e93911118f
Use sysctl to fetch process information if reading live kernel.
2005-09-04 19:02:08 +00:00
elad
4c70438790
Use sysctl to fetch AF_LOCAL PCB lists if reading live kernel.
2005-09-04 18:59:57 +00:00
rpaulo
f20c174719
Place the sysctl code under an if block and print an error message if the
...
user tries to fetch information via kvm.
Discussed with Elad Efrat.
2005-09-02 22:52:24 +00:00
rpaulo
d65009381e
Request process information using sysctl(3) and not kvm(3) since bpf(4)
...
statistics and peers are only available using the former.
2005-09-02 22:23:13 +00:00
elad
6383828527
Avoid defining max. hash length ugliness simply by passing NULL for the
...
buffer to the File routines.
Noted by pooka@.
2005-09-02 17:39:23 +00:00
elad
871155c6cf
Forgot +1 for NUL termination.
2005-09-02 16:52:34 +00:00
elad
50b96d774b
Use MAXHASHLEN to indicate largest possible hash.
...
Fixes buffer overflow found by xtraeme@.
2005-09-02 16:52:03 +00:00
rpaulo
95abecf761
We already pass WARNS=3.
2005-09-01 18:27:24 +00:00
drochner
9b39088e5c
id(1) didn't check the return value of getgrouplist(3) and used memory
...
outside the group array in the case that a user is member of more than
_SC_NGROUPS_MAX groups.
(This is probably also the problem behind PR bin/31069 by Zafer Aydogan.)
So check the return value and retry with sufficiently allocated memory
in case the initial _SC_NGROUPS_MAX groups are not enough.
2005-08-30 16:47:47 +00:00
rpaulo
c5a8fe81ae
Use net.inet6.{ip6,udp6,pim6,raw6}.stats for live systems.
...
Reviewed by Elad Efrat.
2005-08-28 21:06:57 +00:00
rpaulo
51345e62d3
Use net.inet6.tcp6.pcblist, net.inet6.tcp6.stats (not implemented yet) and
...
net.inet6.icmp6.stats if we are gathering information from a live system.
Reviewed by Elad Efrat.
2005-08-28 16:12:35 +00:00
mrg
cde2923d5b
avoid an infinite loop while decompressing invalid gzip files.
...
some minor CSE. compare stat return value consistently.
thanks to tron for testing the first change.
2005-08-28 10:17:50 +00:00
christos
efc9df200f
PR/31077: Wil L: /usr/bin/make can read off of end of buffer
2005-08-27 08:04:26 +00:00
rpaulo
e606ac2d9a
PR bin/31068: whatis doesn't find /bin/[ by Zafer Aydogan.
...
Patch provided by Jukka Salmi. I just added a comment.
2005-08-25 16:29:15 +00:00
drochner
f46880afbf
in locators.h, also emit definitions about the number of locators per
...
interface attribute
2005-08-25 15:02:18 +00:00
drochner
0d6cb6f10c
Replace the "locnames", attached to cfdata, which was solely good for
...
userconf, by more complete information (including default values) about
interface attributes, attached to the drivers which provide them.
2005-08-25 15:01:07 +00:00
tron
a73f6299d6
Fix host tool build which got broken when SHA2 support was added.
2005-08-25 09:51:23 +00:00
rpaulo
fcf2b555d7
If the specificed MIB doesn't exist, then it's probably a kernel without
...
that socket type (AF_INET, AF_INET6, etc.). That's a normal condition, so
don't bail out.
Reviewed by Andrew Brown.
2005-08-24 21:33:57 +00:00
rpaulo
f16cc5d95a
Don't break each name in the AUTHORS section.
2005-08-24 21:31:45 +00:00
elad
3722a15dc3
Add support for SHA2 in cksum.
2005-08-24 19:59:08 +00:00
elad
eee731374f
Fix some lint warnings.
2005-08-24 19:44:45 +00:00
ginsbach
2ab55b55e7
Add description of service keys as these maybe in one of several forms.
2005-08-24 14:46:59 +00:00
ginsbach
21b9a99b7c
Implement "ethers".
2005-08-24 14:31:02 +00:00
tron
4616c2367c
Fix a one byte off error which causes "less" to crash if you view a
...
large file, jump to the end, scroll backwards with "b" and try to
search backwards afterwards.
2005-08-24 11:33:09 +00:00
elad
d5f9e57cff
Put back in information about the deprecated flags in the man-page. Be
...
explicit about them being removed, and suggest using the ``-a'' flag.
2005-08-23 15:29:48 +00:00
elad
b4df0b712a
Note about deprecated flags.
2005-08-22 14:47:55 +00:00
elad
7345c13cbb
Add comments about intentionally not documenting the deprecated -1, -2, -4,
...
-5, -6, and -m flags so they are not mistakenly get documented again in the
future.
2005-08-21 19:33:10 +00:00
elad
a7d7292dfa
Some changes to cksum:
...
1. Deprecate the -1, -2, -4, -5, -6, and -m flags. For now, simply remove
them from the documentation.
2. Add and document ``-a algorithm''.
2005-08-21 18:51:44 +00:00
lukem
c114b2eb28
Don't clear the trailing character on the auth_url() username;
...
we now use getline() and that newline strips for us.
Problem found & fixed by Mark Davies.
2005-08-21 16:16:33 +00:00
christos
c4ee9f6d2e
64 bit inode changes
2005-08-19 02:07:18 +00:00
rpaulo
70d95a4d7d
/sys is no longer available, change it to /usr/src/sys.
2005-08-18 01:09:02 +00:00
christos
d3b0b4d68a
PR/30750: Mark Davies: ssh gives bogus complaint when gssapi authentication
...
fails. The problem was that different ssh programs were compiled with different
cpp flags. In particular, ssh-keysign was affected. Move all the CPPFLAGS
to Makefile.inc. Note that I am not moving the library portion of the defines
because we don't want to link everything with all the libraries.
2005-08-18 00:19:28 +00:00
uebayasi
976fee6969
!' needs an escape sequence (
\&'). New sentence, new line.
...
Reviewed By: wiz
2005-08-17 00:58:19 +00:00
elad
bbf85a429b
Use PRIxPTR when printing a pointer.
2005-08-12 14:08:16 +00:00
rpaulo
cccbf666c8
Query the v6 sockets only if USE_INET6 != "no". Patch provided by Jukka Salmi
...
on PR#30963.
ok atatat@
2005-08-10 20:32:57 +00:00
rpaulo
0459285527
Fix a typo in the islistening() routine. Patch provided by Jukka Salmi
...
on PR#30963.
2005-08-10 20:21:14 +00:00
mrg
3a96c9add9
add a "file" to the arguments that isn't enclosed in square brackets
...
making it clear that at least one file/directory argument is required
in both the manual and usage. "find" with no args currently barfs but
these documents implied it would do something useful.
2005-08-10 06:51:24 +00:00
christos
81c9862ba6
- Minor logical restructure. Make sure we can create the client before
...
even bothering to call makemsg(); (Liam Foy)
- Use MAXPATHLEN consistently (Liam Foy)
- WARNS=3, KNF and misc cleanups
2005-08-09 23:41:38 +00:00
christos
573f57f885
Say which daemon produces the data and correct the default of 3 minutes
...
(Liam Foy)
2005-08-09 23:28:59 +00:00
christos
abefed98a7
Add typedefs for DuplicateProc and FreeProc from Max Okumoto.
2005-08-09 21:36:42 +00:00
christos
81b135acdf
From Max Okumoto:
...
- Remove casts to NULL.
- Remove space between cast and object.
2005-08-08 16:42:54 +00:00
he
4577ef8d16
Replace usage of caddr_t with intptr_t, to allow this to build cleanly
...
on both 32- and 64-bit archs.
2005-08-08 12:11:52 +00:00
blymn
64e76e4ea0
Don't error when tape drives are not configured on a system.
2005-08-08 11:31:48 +00:00
christos
a35a74cd06
Fix pasto: don't call the wrong function from the wrapper. Reported by perry.
2005-08-08 01:28:08 +00:00
elad
dbc883fab2
Use sysctl to read live kernel PF_INET PCBs.
2005-08-07 17:10:36 +00:00
christos
9eb4baf479
From Liam Foy:
...
- Print uptime in secs if uptime is less than 1 minute
- If at least one call to onehost() fails, return one (allows for external error detection)
- Avoid leaks, use clnt_destroy (from OpenBSD)
- err(3) cleans
From me:
- lint cleanups
- more KNF
2005-08-07 16:01:45 +00:00
cube
3b40577510
- Make sure devitab is correctly handled, in case we're removing the entry
...
it contains,
- Properly update the d_ihead list: if we have remaining aliases, use them
to fill in the gap
Thanks to Bernd Ernesti for the test cases.
2005-08-07 15:11:12 +00:00
blymn
132bb1fe89
Add tape statistics.
2005-08-07 12:32:38 +00:00
blymn
71c77b437a
Add support for tape statistics.
2005-08-07 12:23:20 +00:00
blymn
681d2bb37b
Add support for gathering tape statistics.
2005-08-07 12:21:46 +00:00
elad
c1494c99c6
Use sysctl to fetch IP, ICMP, TCP, and UDP statistics.
2005-08-06 17:58:13 +00:00
rpaulo
ec70a5dc17
Explained how -B works and how it works in conjunction with -I or -s.
...
Reviewed by wiz@
2005-08-06 11:23:32 +00:00
elad
8920c39bb8
Fix printing formats.
2005-08-05 12:16:51 +00:00
christos
6240774069
More KNF cleanups from Max Okumoto
2005-08-05 00:53:18 +00:00
rpaulo
9ce7ce6bf0
Added #include <kvm.h> since netstat.h, which is included too, needs it.
2005-08-04 19:41:28 +00:00
rpaulo
22a0fcf290
Added bpf.c.
2005-08-04 19:40:00 +00:00
rpaulo
66daeed445
Implemented the userland part of the BPF statistics and BPF peers,
...
net.bpf.stats and net.bpf.peers sysctls respectively. netstat(1) now
has an additional syntax:
netstat [-s] [-B] [-I Interface]
Only the super user can see a list of BPF peers with the following command:
# netstat -B
Active BPF peers
PID Int Recv Drop Capt Flags Bufsize Comm
4941 lo0 0 0 0 I--S- 262144 tcpdump
252 ex0 19668 0 5 I-RS- 32768 dhclient
And every user can see the BPF statistics with:
$ netstat -s -B
bpf:
19669 total packets received
5 total packets captured
0 total packets dropped
This idea came from FreeBSD (Christian S.J. Peron) but, currently, they
doen't have a userland utility in the base system to read the sysctls.
Reviewed by: christos@
2005-08-04 19:39:40 +00:00
christos
9f80093159
remove unnecessary casts to void * functions (Max Okumoto)
2005-08-04 00:20:12 +00:00
christos
62a6753895
from Max Okumoto: debug should be int, not boolean.
2005-08-03 20:55:01 +00:00
xtraeme
5057789f26
Don't show ptyfs in the display, it's useless.
2005-08-01 02:38:03 +00:00
christos
244d270d1b
warns=3, delint.
2005-07-30 16:19:09 +00:00
christos
d8213a2a2a
- Check stdin, stdout, and stderr for a tty. From Liam Foy for SUSv3
...
compliance.
- While here, delint, prototypes, getsetprogname, warns=3
2005-07-30 16:14:39 +00:00
christos
e8323719e6
Usage should exit with to according to posix (from Liam Foy).
...
While here, pass WARNS=3 and lint
2005-07-30 14:43:13 +00:00
yamt
19ff568b84
allow configuration without swap.
2005-07-30 06:40:30 +00:00
christos
b3350d3e14
Remove unused files. From Max Okumoto.
2005-07-30 00:49:13 +00:00
christos
0d20a48365
remove -static.
2005-07-29 01:19:20 +00:00
christos
0a918ea74c
Traditional flex uses int instead of yy_size_t for some api functions.
...
Unfortunately this mangles differently in c++, so we get undefined symbols.
So we define the old function prototype to keep things happy.
2005-07-28 04:14:30 +00:00
he
759fbc6504
The return type from getopt(3) is int, not char. Besides, char is
...
not guaranteed to be signed, so comparison with -1 will cause a
warning (turned error) for some of our ports (e.g. our arm ports).
Fix this by making the 'ch' variable an int instead of a char.
2005-07-27 09:29:02 +00:00
christos
3692d77541
Whitespace KNF cleanup from Max Okumoto
2005-07-25 22:55:58 +00:00
cube
c3414672de
The devi lists in struct devbase and struct deva really should use the
...
TAILQ set of macros from queue.h... It's way too easy to make mistakes...
config(1) was segfaulting in deldev() in some situations... Reported by
Brend Ernesti.
2005-07-25 22:31:07 +00:00
hubertf
f81ddc5831
Add vndcompress
2005-07-25 18:10:09 +00:00
wiz
a654b897c8
Sync usage with man page.
2005-07-25 12:25:54 +00:00
wiz
8107329829
Various improvements.
2005-07-25 12:24:40 +00:00
hubertf
e98029593c
Add vndcompress(1) and vnduncompress(1) to transform filesystem/disk
...
images from "normal" into cloop2-format compressed images and back.
Written by Florian Stoehr (netbsd@wolfnode.de ) with some polishing
by me.
Compressed disk images can be used with the vnd(4) driver when compiled with
VND_COMPRESSION and "vnconfig -z". Useful for creation of Live CDs/DVDs.
2005-07-25 12:17:59 +00:00
cube
878c29f51a
Correct an if test.
2005-07-25 06:22:09 +00:00
cube
e499d8b53e
Implement the long overdue syntax "no <dev> at <attachment>". We can't
...
pretend anymore we don't have it.
This is the result of 7 hours of work on the train journey forth and
back to the family reunion for the birthday of my cousin Mickael, whom
I thank for living just far away enough.
2005-07-24 21:31:02 +00:00
christos
4023e9bbcb
add more crap for denic. From OpenBSD.
2005-07-22 16:01:52 +00:00
peter
0d03348661
Implement the following two XSI extensions:
...
-q: quick mode, list only the names and the number of users currently
logged on.
-s: default mode, list only the name, line and time fields.
2005-07-22 14:23:05 +00:00
ross
6a10734347
Fix a couple of stack-smashing buffer overflows.
2005-07-20 17:22:45 +00:00
dsainty
de09461393
Sprinkle const liberally
2005-07-20 12:54:30 +00:00
dsainty
0de40530b6
From discussion on tech-userlevel, change the comment formatting in the
...
changes applied in revision 1.10. At the same time, expand the comments
a bit to make the code slightly clearer. No code changes.
2005-07-20 12:40:27 +00:00
christos
b89278a40d
WARNS=3
2005-07-19 23:18:31 +00:00
christos
ca28631014
Pass lint completely.
2005-07-19 23:07:10 +00:00
yamt
fdeeeda1ac
remove a wierd blank line in the case of -b.
2005-07-19 12:24:39 +00:00
christos
ece0fd5c87
WARNS=3
2005-07-19 01:38:38 +00:00
lukem
dccca90900
Revert back to using an int (instead of size_t) for holding a value that may
...
be negative.
Fixes progressbar display on terminals <43 columns wide.
Bug noted and solution suggested by Gavan Fantom.
2005-07-19 00:41:05 +00:00
christos
ddee551034
Handle C99 array range initializers:
...
type a[] = { [lo ... hi] = c }:
2005-07-17 19:35:48 +00:00
christos
2d45339e97
Remove a const.
2005-07-17 17:08:25 +00:00
he
a052596ae7
Make misc.h depend on makeerrnos.sh, to ease UPDATE builds after the
...
latest change to support WARNS=3.
2005-07-17 15:48:28 +00:00
he
d36a483f83
Make this build with WARNS=3, and enable it.
...
Renames local variable syscall to syscall_ent to placate -Wshadow,
and adds const to struct field initialized to string literals.
2005-07-17 09:45:50 +00:00
he
7b9dcb30de
Follow up the constification of ioctlname() in ktrace.h.
2005-07-17 08:44:08 +00:00
christos
553881914b
WARNS=3, knf, ansi prototypes
2005-07-17 07:36:26 +00:00
christos
7fc92b0291
Explain why table is not const.
2005-07-16 22:32:36 +00:00
christos
58fc70c4d6
WARNS=3
2005-07-16 22:00:01 +00:00
christos
fd2a8295bb
- make input errors print the lint source line number they are called from.
...
- simplify a conditional.
2005-07-16 19:54:00 +00:00
christos
41d3ce981c
Fix more lint problems.
2005-07-16 19:50:32 +00:00
christos
0aa8a97934
WARNS=3 and remove default values.
2005-07-16 16:21:05 +00:00
christos
140eaa6eeb
- KNF
...
- better handling of errors and messages
- pass lint
2005-07-16 16:20:35 +00:00
christos
078c5c1a41
From David Sainty: If a process dissappears while we are signalling it, don't
...
count it as a match/error.
2005-07-16 15:53:56 +00:00
rpaulo
0024ded950
Remove the -L parameter from the first line of the SYNOPSIS
...
and bump the date.
ok Hubert Feyrer.
2005-07-16 12:35:59 +00:00
wiz
bbd944217e
Add missing break. From YOMURA Masanori in PR 30751.
2005-07-15 09:45:04 +00:00
reed
9887c735e4
Add NetBSD 2.0.2 was released on April 12, 2005.
2005-07-15 03:17:46 +00:00
wiz
b6672bc279
Improve command description, from jmc, jaredy, and tom, all @openbsd.
2005-07-14 22:16:39 +00:00
mrg
a3d57ef1bd
play.c: allow empty files to exit gracefully rather than with an error
...
of "header seems really large". reported by wiz.
record.c: don't use total_size in the header if is -1 (it's initial value)
2005-07-13 10:57:11 +00:00
sjg
c3c1fc597e
Expected results were not updated for comment testing.
2005-07-11 17:55:19 +00:00
wiz
fdf8185afa
In macdef, point to $ command (from jmc@openbsd), and split paragraph (it was getting a bit big).
2005-07-06 11:21:26 +00:00
wiz
ee1fddfe1e
Use more macros, and use them more consistently.
...
Fix a few typos.
2005-07-06 11:18:05 +00:00
wiz
d3a0b4c8cd
Sync usage with man page (from jmc@openbsd).
2005-07-06 07:57:19 +00:00
mrg
8ce77e5534
move some more processing before opening the audio device. don't
...
default the encoding to ulaw; default it to what ever the device
has. the latter fixes PR#30612.
2005-07-05 22:01:42 +00:00
mrg
906f130f1a
check that an output file is given before doing any other work.
...
avoids touching the audio device and then printing an error.
2005-07-05 21:05:50 +00:00
kleink
99dffcffea
Set LOGNAME in the new environment (in addition to USER);
...
fixes PR bin/30670 from Pavel Cahyna.
2005-07-05 20:15:13 +00:00
wiz
223c2f668b
Grammar fix from jmc@openbsd.
2005-07-05 15:28:44 +00:00
wiz
b08598c658
Improve -ml description, wording from jmc@openbsd.
2005-07-05 15:28:16 +00:00
lukem
5f450b0c4b
Improve the description of the macros.
...
Patch from David H. Gutteridge in PR 24296.
2005-07-05 09:29:54 +00:00
wiz
370088dd17
Sort options. Refer to deroff(1) for -m description.
...
pipe lines through fmt.
2005-07-02 10:39:13 +00:00
wiz
d54d971520
Use more macros. Sort -m arguments and fix their descriptions.
...
Break some lines to fit 80 characters per line.
2005-07-02 10:29:44 +00:00
dsainty
432d19fe4b
By setting close-on-exec on the USB HID device descriptor, prevent passing an
...
extraneous descriptor to the command defined as the action to take on a
particular HID event.
This also avoids an unfortunate side-effect: killing and restarting
usbhidaction would sometimes fail because of a lingering open descriptor for
the same device on a process executed by the previous run of usbhidaction.
[OK'd by Lennart]
2005-07-02 04:05:09 +00:00
christos
3d520edd5e
PR/29985: Roland Illig: make(1) interprets backslash wrongly in for
...
loop expansions, when the expanded variable ends in backslash and
the backslash is the last character on the line. While this fix is
ugly (detect the condition and append a space), it is the least
intrusive for now.
2005-07-01 16:45:38 +00:00
christos
97ccbe263d
WARNS=3
2005-06-30 16:23:29 +00:00