summaryrefslogtreecommitdiffstats
path: root/lib/libutil
Commit message (Collapse)AuthorAgeFilesLines
...
* Print uid/gid as u_long per bde suggestionache1998-07-291-5/+5
|
* cast arg to (long) to match formatache1998-07-281-3/+3
|
* Cast pid_t to int for sprintf.brian1998-06-101-2/+2
| | | | Pointed out by: Charlie Sorsby <crs@hgo.net>
* Spelling corrections.jkoshy1998-06-063-10/+10
| | | | | PR: 6868 Submitted by: Josh Gilliam <josh@quick.net>
* Add missing uu_lock_txfr() prototypeache1998-06-051-1/+2
|
* If using NetBSD syscalls the rtprio syscall doesn't exist, so justjb1998-06-031-1/+7
| | | | don't try to use it to set special priorities.
* Trim a domain part for wtmp as same as showed by "netstat -r".amurai1998-06-012-3/+42
| | | | | | | | | | | | | Here is a some example for avoiding a confusion. It asssumes a logged host domain is "spec.co.jp". All example is longer than UT_HOSTNAMELEN value. 1) turbo.tama.spec.co.jp: 192.19.0.2 -> trubo.tama 2) turbo.tama.foo.co.jp : 192.19.0.2 -> 192.19.0.2 3) specgw.spec.co.jp : 202.32.13.1 -> specgw Submitted by: Atsushi Murai <amurai@spec.co.jp>
* Add uu_lock_txfr() to transfer ownership of a successfulbrian1998-05-284-10/+62
| | | | uu_lock() to another process.
* Allow setting of idle or realtime processing priorities persteve1998-05-251-5/+22
| | | | | | | login class. PR: 6636 Submitted by: Jason Young <doogie@forbidden-donut.anet-stl.com>
* Oops, revert part of a diff that wasn't supposed to have been committed.dg1998-04-281-2/+2
|
* Cache the results of the ps_strings sysctl so that it doesn't have to bedg1998-04-281-10/+12
| | | | redone for every call of setproctitle().
* Fixed function types in synopsis.bde1998-03-231-10/+10
| | | | | | Commented out docmentation of nonexistent authenticate() and auth_timesok(). authenticate() seems to be obsolete and auth_timesok() never existed in FreeBSD.
* .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aqcharnier1998-03-191-3/+3
|
* Change tty-related capability names to match the implementation ("ttys.",fenner1998-02-211-10/+10
| | | | not "tty.").
* MF22: add login_auth.3 to man page list.jkh1998-02-181-2/+2
|
* Correctly document h and m modifiers to the time format.steve1998-02-141-1/+3
| | | | | PR: 5739 Submitted by: Matthew Cashdollar <mattc@rfcnet.com>
* Fixed bitrot in the prototype for logwtmp().bde1998-01-161-2/+2
|
* Make a couple of the stat flags dependent on the sys/stat.h header filejb1998-01-091-1/+9
| | | | | | | | | | | that this source is compiled against. This source is referenced by install which is needed as a build tool and must be able to compile against NetBSD headers and libraries if we have a hope of supporting another architecture. With this change, that's two working programs down and 3945 (?) to go. The other one was make, but that didn't need any changes to work under FreeBSD/Alpha. 8-)
* Make the login_getclassbyname prototype match reality.steve1997-11-051-2/+2
| | | | PR: 4838
* Statisize usage().charnier1997-10-271-1/+4
|
* Remove the claim that UUCP locking were not atomic. It is sincejoerg1997-10-071-13/+1
| | | | revision 1.8 of uucplock.c.
* Add passwd(5) to "SEE ALSO".obrien1997-10-071-1/+2
| | | | | | | ISSUES: An example and better explansion on how to specify a user's login class in /etc/master passwd is needed. (As I don't seem to be specifiying it right, I can't do it).
* Changes to support full make parallelism (-j<n>) in the worldjkh1997-10-051-3/+3
| | | | | | target. Reviewed by: <many different folks> Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su>
* Sort cross refereces in section SEE ALSO.wosch1997-09-291-2/+2
|
* Endless loop.wosch1997-09-291-5/+5
| | | | | | | | | | | $ vipw [corrupt a line in editor, exit editor] pwd_mkdb: corrupted entry pwd_mkdb: at line #2 pwd_mkdb: /etc/pw.012585: Inappropriate file type or format re-edit the password file? [y]: n^D^D [hang]
* The parameters to logwtmp should be const char'spst1997-09-042-4/+6
|
* Remove login_progok()brian1997-08-315-103/+5
| | | | Suggested by: guido
* Add full support for determining if a userbrian1997-08-275-5/+101
| | | | is restricted from running a given program.
* Add prog.deny as a list capability forbrian1997-08-261-1/+3
| | | | denying execution of certain programs.
* -I${DESTDIR}/sys -> -I${.CURDIR}/../../sys.bde1997-08-261-1/+1
|
* Cosmetic: distinguish in diag message between rebuilding and updatingjoerg1997-08-241-1/+2
| | | | | | | the database. PR: 3397 Submitted by: taob@risc.org (Brian Tao)
* Protect the copyright comments from reformatting bysteve1997-08-135-3/+28
| | | | | | | indent and make this compile -Wall clean like the Makefile suggests that it should. :) Pointed out by: Bruce Evans <bde@zeta.org.au>
* Implement canonical locking protocolache1997-08-103-62/+83
| | | | Suggested by: joerg
* Observe precedence set by Phillippe Charnier in adding ansteve1997-08-071-3/+5
| | | | rcsid.
* Remove #if(n)def BSD_4_4_LITE cruft and sccsid -> rcsid.steve1997-08-071-2/+3
|
* Improve weak locking by using flock()ache1997-08-051-4/+8
|
* sleep() after sending 'nologin' file to ensure output is drained beforedavidn1997-07-191-1/+2
| | | | disconnect.
* Add appropriate ${DESTDIR} in front of absolute paths.asami1997-07-181-1/+1
|
* Fix infinite loop.davidn1997-06-161-2/+2
| | | | | PR: 3878 Submitted by: roman@rpd.univ.kiev.ua
* Add "break" inadvertently removed in previous update.davidn1997-06-131-1/+3
| | | | | PR: 3820 Submitted by: Joseph Stein <joes@spiritone.com>
* Submitted by: Whistle Communications (archie Cobbs)julian1997-06-021-1/+9
| | | | | | | | | | | | | | | | | | These changes add the ability to specify that a UFS file/directory cannot be unlinked. This is basically a scaled back version of the IMMUTABLE flag. The reason is to allow an administrator to create a directory hierarchy that a group of users can arbitrarily add/delete files from, but that the hierarchy itself is safe from removal by them. If the NOUNLINK definition is set to 0 then this results in no change to what happens normally. (and results in identical binary (in the kernel)). It can be proven that if this bit is never set by the admin, no new behaviour is introduced.. Several "good idea" comments from reviewers plus one grumble about creeping featurism. This code is in production in 2.2 based systems
* Typo police.tg1997-05-221-2/+2
|
* Now I really understand the reason for the style.9 rule about not havingpeter1997-05-191-14/+14
| | | | | | | visible type names in prototypes in user space headers. libutil.h generates warnings with -Wall over the use of "const char *ttyname". It's lucky it wasn't a #define conflict. Is a single '_' prefix acceptable? or does it need to be two?
* MF2.2: update login_cap api docs.davidn1997-05-181-9/+23
| | | | | | | PR: Reviewed by: Submitted by: Obtained from:
* For non-root uids, consider root-owned files also 'secure' unless otherwisedavidn1997-05-152-4/+4
| | | | disqualified.
* Back out previous revision. Shlib version numbers are supposed to beasami1997-05-131-1/+1
| | | | | | | | bumped only 0.1 or 1.0 between releases. (See handbook.) Note that if you have built world in -current in the last 48 hours or so, you should manually remove /usr/lib/libutil.so.2.3 before rebuilding world to cleanse your system.
* Make uu_* const correct.brian1997-05-123-12/+12
| | | | Suggested by: joerg
* Add #include <sys/types.h> in synopsis, now required for libutil.h.davidn1997-05-114-4/+8
|
* Bump shared lib version to 2.3.davidn1997-05-111-1/+1
| | | | Suggested by: bde
* MF2.2: bugfix in arrayize().davidn1997-05-111-2/+2
|
OpenPOWER on IntegriCloud