nectar
0d545984ad
*sigh* Misfire. Backout previous commit, as it was meant for
...
another branch.
2002-01-29 17:40:45 +00:00
nectar
31c2c5362e
FreeBSD 4.4 doesn't have __FBSDID. Do it the old-fashioned way instead.
...
Reported by: Steven Farmer <steve@geoenergycorp.com>
Pointy hat to: nectar
2002-01-29 17:11:28 +00:00
obrien
446873d787
The list of not-wanted and needed files for the binutils_anoncvs_20020127
...
import.
2002-01-28 12:51:19 +00:00
obrien
2ecb30eb93
Explain how I did the binutils_anoncvs_20020127 import.
2002-01-28 12:50:53 +00:00
peter
b91a8c787a
This commit was generated by cvs2svn to compensate for changes in r89884,
...
which included commits to RCS files with non-trunk default branches.
2002-01-27 22:41:09 +00:00
nectar
9fdf88975b
= Fix temporary file handling.
...
Obtained from: Immunix Linux
= Garbage collect now-unused temporary file handling functions.
= Add __FBSDID.
2002-01-27 16:43:35 +00:00
obrien
cc46a9ac95
Use these malloc-like bits from libiberty now.
2002-01-27 12:45:01 +00:00
obrien
1ec5095d71
Merge rev 1.2 (teach `ld' how to access FreeBSD's ld ELF hints)
...
into Binutils 2.12.0_snap.
2002-01-27 12:24:18 +00:00
obrien
9065e980a4
Bring the binutils_2_12_cvs_20020127 version of this to the HEAD branch.
2002-01-27 12:23:29 +00:00
obrien
6f96e0a473
Use the stock 2.12.0_snap version of this.
2002-01-27 12:18:32 +00:00
obrien
00f4a20efb
Merge rev 1.2 (FreeBSD a.out configuration support) into Binutils 2.12.0_snap.
2002-01-27 12:17:58 +00:00
obrien
8c0b5248c2
Bring the binutils_2_12_cvs_20020127 version of this to the HEAD branch.
2002-01-27 12:17:17 +00:00
obrien
a106f6ebaf
Bring the binutils_2_12_cvs_20020125 version of this to the HEAD branch.
2002-01-27 12:16:47 +00:00
obrien
75753c911d
Use the stock 2.12.0_snap version of this now.
2002-01-27 12:15:52 +00:00
obrien
1b0b9e44d6
Use the vendor's 2.12.0_snap vendor version of this file as in rev 1.5.
2002-01-27 12:12:53 +00:00
obrien
7ddb3a2a40
Use the vendor's 2.12.0_snap version of this file as in rev 1.4.
2002-01-27 12:09:38 +00:00
obrien
146ad69232
Commit the stock 2.12.0_snap version.
2002-01-27 12:08:47 +00:00
obrien
b26ac58c1b
Merge rev 1.6 (only define "ELF_DYNAMIC_INTERPRETER" if it isn't defined
...
elsewhere) into Binutils 2.12.0_snap.
2002-01-27 12:08:15 +00:00
obrien
f07f64b09c
Merge rev 1.8 (only define "ELF_DYNAMIC_INTERPRETER" if it isn't defined
...
elsewhere.) into Binutils 2.12.0_snap.
2002-01-27 12:07:38 +00:00
obrien
ac03f956cd
Merge our ELF branding into Binutils 2.12.0_snap.
2002-01-27 12:06:54 +00:00
obrien
2c76fd68f4
This commit was generated by cvs2svn to compensate for changes in r89857,
...
which included commits to RCS files with non-trunk default branches.
2002-01-27 12:00:11 +00:00
obrien
fc89183cdc
Enlist the FreeBSD-CURRENT users as testers of what is to become Binutils
...
version 2.12.0. These bits are taken from the FSF anoncvs repo on
27-January-2002 03:41 PST.
2002-01-27 12:00:11 +00:00
ache
a76b3153c4
Zeroing memset() in opiechallenge() really is not needed because it is the
...
very first thing immediately following opielookup() does being entered, i.e.
look at this:
int opielookup FUNCTION((opie, principal), struct opie *opie AND char
*principal
)
{
int i;
memset(opie, 0, sizeof(struct opie));
...
2002-01-24 22:19:21 +00:00
dwmalone
c48987263d
Resolve conflicts.
2002-01-24 17:58:42 +00:00
dwmalone
37a39754f4
Resolve conflicts (our -t option, we'd fixed a bug in a slightly different way).
2002-01-24 17:55:40 +00:00
dwmalone
3e1b7588c4
Resolve conflicts (we have a -t option).
2002-01-24 17:54:04 +00:00
dwmalone
9785b3935a
Resolve conflict: We made a fix renaming a structure member error,
...
but it was renamed errnum on the vendor branch.
2002-01-24 17:52:26 +00:00
dwmalone
9db2b84363
This commit was generated by cvs2svn to compensate for changes in r89750,
...
which included commits to RCS files with non-trunk default branches.
2002-01-24 17:24:16 +00:00
dwmalone
6d85e91806
import top_3_5beta12
2002-01-24 17:24:16 +00:00
des
8926dc8e12
This commit disables chain caching.
...
Chain caching is a feature of Linux-PAM, where pam_authenticate() and
pam_open_session() "freeze" the chain so that their companion
primitive (pam_setcred() and pam_close_session() respectively) will
call the exact same modules, skipping those that failed in the
previous call.
There are several reasons not to do this, the most prominent of which
is that it makes it impossible to call pam_setcred() without first
calling pam_authenticate() - which is perfectly valid according to
DCE/RFC 86.0 and XSSO, and is necessary to make 'login -f' work.
Instead of chain caching, implement something similar to the way
Solaris' libpam behaves: pam_setcred treats "sufficient" modules as if
they were "required", i.e. does not break the chain when they succeed.
PAM modules whose pam_sm_setcred() should not be called unless their
pam_sm_authenticate() succeeded can simply set a state variable using
pam_set_data() in pam_sm_authenticate(), and use pam_get_data() to
check it in pam_sm_setcred().
Sponsored by: DARPA, NAI Labs
2002-01-24 15:30:03 +00:00
keramida
1c07280aca
dhclient-script.conf lives in /etc and not /sbin.
...
PR: docs/32008
Submitted by: John E Hein <jhein@timing.com>
Approved by: obrien
2002-01-23 13:56:41 +00:00
markm
de3354b0e3
WARNS=4 fixes.
...
OK'ed by: des
2002-01-20 17:54:33 +00:00
ru
c56d52b021
MFV: Initialize %I register.
2002-01-18 15:28:32 +00:00
ru
4fd66a15df
This commit was generated by cvs2svn to compensate for changes in r89500,
...
which included commits to RCS files with non-trunk default branches.
2002-01-18 15:25:01 +00:00
ru
a0c837c78a
From ChangeLog:
...
: 2002-01-17 Ruslan Ermilov <ru@FreeBSD.org>
:
: * tmac/doc.common: Initialize %I register for the %I macro to
: avoid (harmless) warning.
: * tmac/doc.tmac (Bd): There is no reason to enforce -compact
: when in the SYNOPSIS section.
2002-01-18 15:25:01 +00:00
ru
6f8d82dc25
Satisfy pedantic readers.
...
PR: docs/31260
From ChangeLog:
: 2002-01-14 Ruslan Ermilov <ru@FreeBSD.org>
:
: * tmac/groff_mdoc.man: Minor fixes.
2002-01-15 17:15:28 +00:00
ru
6a13ede71c
This commit was generated by cvs2svn to compensate for changes in r89397,
...
which included commits to RCS files with non-trunk default branches.
2002-01-15 17:15:28 +00:00
ache
8c53fa37c5
This commit was generated by cvs2svn to compensate for changes in r89354,
...
which included commits to RCS files with non-trunk default branches.
2002-01-14 15:58:32 +00:00
ache
635048e64c
Import official baudrate fix into the vendor branch
2002-01-14 15:58:32 +00:00
alfred
df4981173c
Backout inclusion of sys/queue.h
2002-01-14 09:19:18 +00:00
alfred
d096a8fe20
add queue.h, now needed for file.h
2002-01-14 04:12:54 +00:00
ru
3575b89a4b
MFV: NetBSD style document titles (OS/arch).
2002-01-10 18:07:50 +00:00
ru
0fba44aff5
Print architecture right after an operating system name in a title.
...
From ChangeLog:
: 2001-12-24 Ruslan Ermilov <ru@FreeBSD.org>
:
: * tmac/doc-common (Dt): Change output of architecture strings.
: Do some syntax cleanup.
: * tmac/groff_mdoc.man: Updated.
2002-01-10 18:04:04 +00:00
ru
3f968609cd
This commit was generated by cvs2svn to compensate for changes in r89232,
...
which included commits to RCS files with non-trunk default branches.
2002-01-10 18:04:04 +00:00
joerg
2590927e9e
Make the -a flag to opiekey(1) actually work as advertised.
...
Reviewed by: ache, audit, security
MFC after: 1 week
2002-01-09 13:36:26 +00:00
ps
beaaa84fd0
Merge vendor changes onto mainline.
2002-01-07 20:37:09 +00:00
ps
1c0805000f
This commit was generated by cvs2svn to compensate for changes in r89019,
...
which included commits to RCS files with non-trunk default branches.
2002-01-07 20:29:38 +00:00
ps
c0c85bc41c
Import less v371
2002-01-07 20:29:38 +00:00
sheldonh
889a3dbc70
This commit was generated by cvs2svn to compensate for changes in r89010,
...
which included commits to RCS files with non-trunk default branches.
2002-01-07 14:26:12 +00:00
sheldonh
fa30b82df1
Import patch from vendor (taken from nvi-1.81.5) that fixes problematic
...
interaction between the leftright and number options.
PR: bin/23912
Reported by: "Stephen D. Spencer" <gladiatr@boneyard.lawrence.ks.us>
Obtained from: skimo@kotnet.org
2002-01-07 14:26:12 +00:00