Mark Murray
ccece3d626
Whitespace diffs only; this brings this file into the same whitespace
...
convention as src/lib/csu/*/crt1.c.
This will make the follow up diffs easier to see and extract.
2002-07-03 14:42:39 +00:00
Tim J. Robbins
8523e9a677
Avoid checking whether each line is the last line of the file when we don't
...
need to know. Instead, check when we are trying to match a "$" address.
This does not change the way sed processes regular files, but makes it behave
more sensibly when used interactively.
PR: 40101
MFC after: 2 weeks
2002-07-03 14:38:27 +00:00
Tim J. Robbins
5a3232258e
Don't let the pattern space become null if the `x' command is used when the
...
hold space is null; some functions assume it's never null.
MFC after: 3 days
2002-07-03 14:32:43 +00:00
Mark Murray
13ae4922e5
Give k5admin a manpage.
2002-07-03 14:31:52 +00:00
Maxim Sobolev
18febd99fb
Fix another POLA breakage in a new tar: in diff mode presence of file
...
in the archive, but its absence in the file system should be reported
as difference, not as error.
Reported by: bde
2002-07-03 13:01:40 +00:00
Maxim Sobolev
b19918bd36
When we are extracting directory with --unlink option and the directory
...
already exists don't spew bogus "Cannot unlink" error and exit with
non-zero code.
Reported by: bde
2002-07-03 12:44:31 +00:00
Ruslan Ermilov
6e02167b57
Moved checkdpadd target to where it logically belongs.
2002-07-03 12:44:06 +00:00
Ruslan Ermilov
badb7c1c6b
Try really hard to fix parallel installs. Add a bunch of .ORDER
...
directives to ensure that all realinstall sub-tasks are executed
after beforeinstall, similarly ensure that all afterinstall sub-
tasks are executed after realinstall. Demonstration:
all: task1 task2
.ORDER: task1 task2
task2: task2_subtask
.ORDER: task1 task2_subtask
task1 task2 task2_subtask:
@sleep `jot -r 1 0 1.0`
@echo ${.TARGET}
Without the second .ORDER directive, task2_subtask can be run in
parallel with task1.
Spotted by: Andrea Campi <andrea@webcom.it>
2002-07-03 12:28:03 +00:00
Ruslan Ermilov
ff9a78c08e
mdoc(7) police: added missing markup bits, lowercased argument names.
2002-07-03 12:24:11 +00:00
Maxim Konovalov
0e37791701
Remove trailing whitespaces.
...
Approved by: luigi
2002-07-03 11:04:17 +00:00
Maxim Konovalov
b4eabccf51
o Strict interface names comparison. The old code assumed "fxp1" == "fxp11".
...
o Use an appropriate constant for interface name buffer.
Reviewed by: luigi
Approved by: luigi
MFC after: 1 month
2002-07-03 11:00:55 +00:00
Maxime Henrion
d7f9ecc86b
Move vfs_rootmountalloc() in vfs_mount.c and remove lite2_vfs_mountroot()
...
which was #if 0'd and is not likely to be used now.
2002-07-03 09:27:24 +00:00
Julian Elischer
aa0fa33464
Try clean up some of the mess that resulted from layers and layers
...
of p4 merges from -current as things started getting different.
Corroborated by: Similar patches just mailed by BDE.
2002-07-03 09:15:20 +00:00
Maxime Henrion
563af2ec15
Remove an unused argument in vfs_mountroot().
2002-07-03 08:52:37 +00:00
Chris Costello
00c3b17e1e
Correct a call to fcntl(F_SETFD) to use FD_CLOEXEC' instead of
1'.
2002-07-03 08:15:55 +00:00
Chris Costello
32f9f49908
Add a SECURITY CONSIDERATIONS example: make note that access to open
...
file descriptors does not change upon dropping privilege, and include
a likely case of `setuid(non_superuser); exec(...);'.
Sponsored by: DARPA, NAI Labs
Obtained from: TrustedBSD Project
2002-07-03 08:13:25 +00:00
SUZUKI Shinsuke
80317922b5
fixed typo.
...
obtained from: KAME
MFC after: 3 days
2002-07-03 06:48:12 +00:00
Jonathan Mini
66289ab43b
Add missing kernal tunables to loader.conf.
...
PR: i386/39085
Submitted by: David Yeske <dyeske@yahoo.com>
2002-07-03 06:42:43 +00:00
Jonathan Mini
16f33a4885
Fix off-by-one error.
...
PR: misc/40104
Submitted by: Neal Fachan <neal@isilon.com>
MFC after: 3 days
2002-07-03 06:28:04 +00:00
Ruslan Ermilov
93c163325e
No need to explicitly set NOMAN here.
...
Reviewed by: jmallett
2002-07-03 06:25:28 +00:00
Julian Elischer
ee9919b024
White space commit.
...
I'm working on this file but I wanted to make the whitespece commit
separatly.
2002-07-03 06:15:26 +00:00
Julian Elischer
2b877fac01
Approved by: imp@freebsd.org
2002-07-03 04:23:38 +00:00
Andrew Gallatin
0ac3b6364f
Hold the sched lock across call to forward_signal() in tdsignal() to
...
keep SMP systems from panic'ing when ^C'ing an app
suggested by julian
2002-07-03 02:55:48 +00:00
Dag-Erling Smørgrav
b61860ad2d
Add mtx_ prefixes to the fields used for mutex profiling, and fix a bug
...
where the profiling code would report the release point instead of the
acquisition point.
Requested by: bde
2002-07-03 01:50:27 +00:00
Dag-Erling Smørgrav
c2945c3b11
Add the "java" category.
2002-07-03 00:35:09 +00:00
Jeff Roberson
e221e841b0
Actually use the fini callback.
...
Pointy hat to: me :-(
Noticed By: Julian
2002-07-03 00:30:51 +00:00
Dag-Erling Smørgrav
b770f258b3
- Don't enable OpenSSH's OPIE support, since we let PAM handle OPIE.
...
- We don't have setutent(3) etc., and I have no idea why configure ever
thought we did.
2002-07-03 00:12:09 +00:00
Dan Moschuk
0849c18499
Make sure to reset transflag back to zero upon succesfully using sendfile()
...
to transfer a file.
PR: 39362
Submitted by: TANAKA Hiroyuki <kattyo@abk.nu>
MFC after: 1 week
2002-07-03 00:12:00 +00:00
Dag-Erling Smørgrav
53282320d1
Two FreeBSD-specific nits in comments:
...
- ChallengeResponseAuthentication controls PAM, not S/Key
- We don't honor PAMAuthenticationViaKbdInt, because the code path it
controls doesn't make sense for us, so don't mention it.
Sponsored by: DARPA, NAI Labs
2002-07-03 00:08:19 +00:00
Tom Rhodes
126aa65832
Fix grammar in 1 sentence
...
Reword 'Usually faster in most cases' to 'and is faster in most cases'
PR: 40024 (partly)
2002-07-02 21:13:15 +00:00
John Baldwin
7a921ebf84
Diff-reduce with 4-stable: 4.x has a compat4x package.
2002-07-02 21:07:25 +00:00
Mark Peek
3aaa96958d
Fix typo (SIGEV_EVENT -> SIGEV_KEVENT).
2002-07-02 21:05:08 +00:00
Tom Rhodes
54739799f2
GXP ATA drives also supports TQ
2002-07-02 20:23:43 +00:00
John Baldwin
500fb3ef13
Call the 4.x snap server "releng4.freebsd.org" instead of
...
"stable.freebsd.org" to be the same as 4-stable.
2002-07-02 20:19:59 +00:00
John Baldwin
522c2080e3
Alpha does indeed have a COMPAT4X distribution on current. 4-stable
...
already has this correct.
2002-07-02 20:03:55 +00:00
John Baldwin
92711d3586
Add lge(4) to the list of drivers. It was present in 4-stable but not in
...
-current.
2002-07-02 19:56:26 +00:00
Matthew Dillon
2d41ef4b59
Fix type-o in last commit in preparation for MFC.
2002-07-02 19:06:33 +00:00
Maxime Henrion
534ab2e108
I didn't pay enough attention when copy/pasting disclaimers.
...
The disclaimer in vfs_conf.c was slightly different. Fix this.
2002-07-02 18:33:32 +00:00
Tom Rhodes
ee662b5963
Minor spelling and grammar fixes in the atacontrol(8) manual page.
...
PR: 39393
2002-07-02 18:00:20 +00:00
Maxime Henrion
2b4edb69f1
Move every code related to mount(2) in a new file, vfs_mount.c.
...
The file vfs_conf.c which was dealing with root mounting has
been repo-copied into vfs_mount.c to preserve history.
This makes nmount related development easier, and help reducing
the size of vfs_syscalls.c, which is still an enormous file.
Reviewed by: rwatson
Repo-copy by: peter
2002-07-02 17:09:22 +00:00
Julian Elischer
7e8f051f42
check in the version if this that compiles, not the one that doesn't
2002-07-02 16:57:53 +00:00
Julian Elischer
443fd6da2a
Make some more debugging code go away when debugging is not turned on.
2002-07-02 16:37:56 +00:00
Johan Karlsson
e88001443e
's/rather then/rather than/'
...
PR: 38096
Submitted by: Chris Pepper <pepper@rockefeller.edu>
While I'm here correct some typos pointed out by ispell.
Approved by: sheldonh (mentor)
MFC after: 1 week
2002-07-02 14:33:52 +00:00
Dag-Erling Smørgrav
9f95720321
Version bump for mm_answer_pam_respond() fix.
2002-07-02 13:07:37 +00:00
Dag-Erling Smørgrav
669e440e50
Fix a braino in mm_answer_pam_respond() which would cause sshd to abort if
...
PAM authentication failed due to an incorrect response.
2002-07-02 13:07:17 +00:00
Ruslan Ermilov
8479adc1d3
Reimplemented bsd.nls.mk using bsd.files.mk and bsd.links.mk.
...
Provided the (previously missing) dependency on source files
for intermediate .msg files.
Provided the default for NLSSRCDIR (defaults to .CURDIR).
Slightly changed the API: NLS should now list plain locale
names, without the .msg suffix.
When included from bsd.prog.mk, NLSNAME defaults to PROG.
2002-07-02 12:37:09 +00:00
Ruslan Ermilov
84f94a79a0
Handle installation of hard and symbolic links via a seperate .mk file.
2002-07-02 12:16:54 +00:00
Hajimu UMEMOTO
b0f06def52
Cope with 2292bis-01 getaddrinfo (no NI_WITHSCOPEID, always attach
...
scope identifier).
MFC after: 3 weeks
2002-07-02 11:11:17 +00:00
Hajimu UMEMOTO
f8fa093e82
Cope with 2292bis-01 getaddrinfo (no NI_WITHSCOPEID, always attach
...
scope identifier).
Approved by: des
MFC after: 3 weeks
2002-07-02 11:09:02 +00:00
Hajimu UMEMOTO
15e4dafc91
Make NI_WITHSCOPEID a default (always on), to synchronize
...
with recent 2553bis.
Obtained from: KAME
MFC after: 3 weeks
2002-07-02 11:05:31 +00:00