| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=50952
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=29497
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=28838
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=27985
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=27655
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=26014
|
| |
|
|
|
|
|
|
| |
(Note: in case it doesn't show up, this commit is to the RELENG_2_1_0
branch.)
Notes:
svn path=/stable/2.1/; revision=24784
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=24389
|
| |
|
|
|
|
|
|
| |
necessary for sysinstall (in which tag spam causes the HEAD versions to
always appear for certain files, regardless of major branch).
Notes:
svn path=/stable/2.1/; revision=22362
|
| |
|
|
|
|
|
| |
Reviewed by: jkh
Notes:
svn path=/stable/2.1/; revision=22327
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=22269
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=21395
|
| |
|
|
|
|
|
| |
exit status.
Notes:
svn path=/stable/2.1/; revision=21201
|
| |
|
|
|
|
|
|
|
|
| |
of ugly hacks, and causes many side-effects in places it shouldn't.
The cvs people are aware of the problem but can't solve it, so I don't think
I should be touching it either.
Notes:
svn path=/stable/2.1/; revision=20672
|
| |
|
|
|
|
|
| |
I'm sick and tired of it. I'm going to recompile freefall's cvs now!
Notes:
svn path=/stable/2.1/; revision=20352
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=19497
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=19349
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=19347
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=18881
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=18393
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=17103
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=17093
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16974
|
| |
|
|
|
|
|
| |
file.
Notes:
svn path=/stable/2.1/; revision=16944
|
| |
|
|
|
|
|
| |
setuid scripts.
Notes:
svn path=/stable/2.1/; revision=16847
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16790
|
| |
|
|
|
|
|
| |
Submitted by: The Perl Gods as described in the advisory
Notes:
svn path=/stable/2.1/; revision=16778
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16770
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Install Makefile.yp as /var/yp/Makefile.dist and only make a link
to it from /var/yp/Makefile if /var/yp/Makefile doesn't already
exist. This way we won't clobber an existing copy of /var/yp/Makefile
which the user may have modified and wants to keep.
- Make the services.byname target generate proper map keys.
This will probably be my last commit to this branch unless the
freeze deadline changes for some reason.
Notes:
svn path=/stable/2.1/; revision=16739
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16700
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16698
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16697
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16696
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16683
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16662
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16642
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16235
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16233
|
| |
|
|
|
|
|
| |
I can get it to `make world' succesfully, anyway!
Notes:
svn path=/stable/2.1/; revision=16121
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=16112
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The problem with doing this is that getpwnam() will process all the special
inclusion and exclusion lines in /etc/master.passwd, including substitution.
So, for example, if you have a line on your NIS master server that says:
+@disallowed-users:::::::::/etc/nologin
Then yppasswdd will end up with a user record that has /etc/nologin as
a shell. This in turn will get propagated into /var/yp/master.passwd
when an update is performed, and the user's shell will be changed to
/etc/nologin, thus locking them out of the system.
To fix this, yppasswdd now retrieves the user's master.passwd record
directly from ypserv using a call to yp_match(). This bypasses all
the inclusion/exclusion/substitution processing in getpwent(3).
Note that rpc.yppasswdd in FreeBSD-current does not suffer from this
problem: it digs directly into the map database files when searching
for user records, which means it not only bypasses getpwent(3), it
will also work even if your NIS master server isn't set up as an NIS
client. I could have done something similar here, but that would have
meant adding DB interface code which would have been much more complicated.
Bug pointed out by: Tom Samplonius
Notes:
svn path=/stable/2.1/; revision=16043
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=15989
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=15988
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Clients that used gnumalloc still do, despite the merge. We're not
bringing phkmalloc over.
Thread stuff left out.
PCCARD support left out.
Notes:
svn path=/stable/2.1/; revision=15984
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=15867
|
| |
|
|
|
|
|
| |
Submitted by: peter
Notes:
svn path=/stable/2.1/; revision=15866
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=15826
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=15822
|
| |
|
|
| |
Notes:
svn path=/stable/2.1/; revision=15584
|
| |
|
|
|
|
|
|
|
|
| |
Makefile 1.15 -> 1.18: Safer installation on a running system.
rtld.1 1.2 -> 1.3: Add LD_PRELOAD, remove LD_NO_INTERN_SEARCH and
LD_NOSTD_PATH.
rtld.c 1.27 -> 1.33: Major speedups, code cleanups, LD_PRELOAD support.
Notes:
svn path=/stable/2.1/; revision=15554
|