summaryrefslogtreecommitdiffstats
path: root/lib/libutil
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | | | | | | | | Add support for reading MAM attributes to camcontrol(8) and libcam(3).ken2015-06-091-2/+17
* | | | | | | | | | | | | revert r283969,283970 not needed anymore after r283981bapt2015-06-044-53/+4
* | | | | | | | | | | | | Capitalize the list of accepted variablesbapt2015-06-031-3/+3
* | | | | | | | | | | | | Add a pw_mkdb2(3) function which does the same thing as pw_mkdb(3) exceptbapt2015-06-034-4/+53
* | | | | | | | | | | | | Fix typobapt2015-06-031-2/+2
* | | | | | | | | | | | | Export a list of VM objects in the system via a sysctl. The list can bejhb2015-05-274-2/+174
* | | | | | | | | | | | | Add <sys/user.h> to the SYNOPSIS of the kinfo_get*() functions since thesejhb2015-05-274-4/+8
| |_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | |
* | | | | | | | | | | | gr_equal(): Fix a crash that could occur if the first group's member listmarkj2015-01-251-15/+10
* | | | | | | | | | | | mdoc: improvements to SEE ALSO.joel2014-12-271-2/+2
* | | | | | | | | | | | Convert libraries to use LIBADDbapt2014-11-251-2/+1
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | Fix a clang 3.5 warning about abs(3) being given an argument of typedim2014-10-291-5/+5
* | | | | | | | | | | Fix renaming a group via the gr_copy functionbapt2014-10-281-5/+12
* | | | | | | | | | | Integrate lib/libutil into the build/kyuangie2014-08-138-0/+1406
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | fparseln(3): Update from NetBSD sources.pfg2014-07-231-5/+11
* | | | | | | | | | mdoc: remove superfluous paragraph macros.joel2014-06-232-2/+0
* | | | | | | | | | use .Mt to mark up email addresses consistently (part3)bapt2014-06-235-7/+7
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | Use src.opts.mk in preference to bsd.own.mk except where we need stuffimp2014-05-061-1/+1
* | | | | | | | | Fix a typo.markj2014-05-031-1/+1
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | libutil/pw_util.3: Fix two prototypes.eadler2014-02-131-2/+2
* | | | | | | | Indicate that expand_number is case-insensitive.eadler2013-11-121-1/+2
* | | | | | | | Mention in login.conf.5 which fields may be infinite and how to specifify inf...eadler2013-10-271-0/+10
* | | | | | | | All man pages refer to FreeBSD so there is no need to mention "In .Fx"eadler2013-10-271-3/+1
* | | | | | | | Add a resource limit for the total number of kqueues available to thekib2013-10-212-0/+2
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | don't assert on bad args, instead return an error..jmg2013-10-072-37/+54
| |_|_|_|_|/ |/| | | | |
* | | | | | The round of expand_number() cleanups.pluknet2013-08-301-29/+10
* | | | | | libutil: Use O_CLOEXEC for internal file descriptors from open().jilles2013-08-285-9/+12
* | | | | | Reset errno before strtoumax() call to properly detect ERANGE.pluknet2013-08-211-0/+7
* | | | | | Check strtoumax(3) for ERANGE in case of non-prefixed string.pluknet2013-08-211-0/+4
* | | | | | Fix -Wunsequenced warningkientzle2013-06-291-1/+1
| |_|_|_|/ |/| | | |
* | | | | When pidptr was passed as NULL to pidfile_open(3), we were returningpjd2013-03-141-13/+18
* | | | | commit correct tested fix for gr_util.cdb2013-03-091-46/+58
* | | | | Cleanup gr_add() so it does not leak memdb2013-03-072-53/+86
* | | | | Fixed documented prototype of kinfo_getproc(3).ru2013-03-011-2/+2
| |_|_|/ |/| | |
* | | | libutil: fix typo in comment for gr_fini.mjg2013-01-131-1/+1
* | | | libutil: utilize strsep instead of strcat in a loop in gr_makemjg2013-01-131-6/+10
* | | | libutil: move group_line_format into the scop of its only user.mjg2013-01-131-2/+1
* | | | libutil: eliminate 'found' variable in gr_equalmjg2013-01-131-8/+5
* | | | Simplify pointing dst after the end of all the gr_mem pointers in newgrbapt2012-12-281-2/+1
* | | | errno = ENOMEM was supposed to be removed not return (NULL);bapt2012-12-281-1/+1
* | | | malloc() sets errno to ENOMEM already.bapt2012-12-281-5/+1
* | | | Do not leave parts of the new group uninitialized in gr_dup().bapt2012-12-281-0/+4
* | | | avoid arithmetic on uintptr_tbapt2012-12-271-1/+1
* | | | cast to uintptr_t to properly calculate offsetbapt2012-12-271-1/+1
* | | | Add O_CLOEXEC to flopenbapt2012-12-272-2/+2
* | | | gr_dup: simplify duplication of groupbapt2012-12-271-21/+20
* | | | - Clean up previous gr_add use malloc instead of callocbapt2012-12-272-5/+4
* | | | New gr_add function to provide a clean and safe method to append a new memberbapt2012-12-272-0/+42
* | | | Use flopen(3) instead of open(2) + flock(2)bapt2012-12-272-9/+4
* | | | only rename(2) after chmod(2) has succeedbapt2012-11-201-7/+3
* | | | change mode the group file to 0644 after a successfull rename(2)bapt2012-11-201-1/+8
| |/ / |/| |
OpenPOWER on IntegriCloud