summaryrefslogtreecommitdiffstats
path: root/libexec/rpc.rusersd
Commit message (Collapse)AuthorAgeFilesLines
* Add META_MODE support.sjg2015-06-131-0/+21
|\ | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp
| * dirdeps.mk now sets DEP_RELDIRsjg2015-06-081-2/+0
| |
| * Merge sync of headsjg2015-05-272-3/+1
| |\ | |/ |/|
| * Updated dependenciessjg2014-05-161-1/+0
| |
| * Updated dependenciessjg2014-05-101-0/+2
| |
| * Merge headsjg2014-04-284-20/+4
| |\
| * | Updated dependenciessjg2013-03-111-0/+1
| | |
| * | Updated dependenciessjg2013-02-161-2/+0
| | |
| | |
| | \
| *-. \ Sync from headsjg2012-11-044-6/+42
| |\ \ \
| * | | | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.marcel2012-08-221-0/+23
| | |/ / | |/| | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net>
* | | | Convert to LIBADDbapt2014-11-251-2/+1
| |_|/ |/| | | | | | | | Reduce overlinking
* | | Remove the 3rd clause ("advertising clause") of the BSD license asbrueffer2014-02-174-20/+4
| |/ |/| | | | | | | | | | | permitted by the University of Berkeley on July 22, 1999. Reviewed by: imp MFC after: 1 week
* | More -Wmissing-variable-declarations fixes.ed2012-10-204-6/+42
|/ | | | | | | | | | In addition to adding missing `static' keywords: - bin/dd: Pull in `extern.h' to guarantee consistency with source file. - libexec/rpc.rusersd: Move shared globals into an extern.h. - libexec/talkd: Move `debug' and `hostname' into extern.h. - usr.bin/cksum: Put counters in extern.h, as they are used by ckdist/mtree. - usr.bin/m4: Move `end_result' into extern.h. - usr.sbin/services_mkdb: Move shared globals into an extern.h.
* Port all apps in libexec/ from libulog to utmpx.ed2010-01-132-4/+3
|
* Make WARNS=6 the default for libexec/.ed2010-01-021-3/+0
| | | | | | | | | | | | | | | Just like bin/ and sbin/, I think setting WARNS to the highest value possible will make it more attractive for people to fix warnings. - The WARNS variable is set in the Makefile in the directory of the application itself, making it more likely that it will be removed out of curiosity to see what happens. - New applications will most likely build with WARNS=6 out of the box, because the author would more likely fix the warnings during development than lower WARNS. Unfortunately almost all apps in libexec require a lowered value of WARNS.
* Make rpc.ruserd work with utmpx/libulog.ed2009-12-293-92/+35
| | | | | | | Because strings are now null-terminated, I've decided to just use an array of utmpx structures, instead of the separated strings. This means we just copy the entire utmpx structure and point to the strings within the structures directly.
* Perform cleanups to rpc.rusersd:ed2009-12-283-198/+204
| | | | | - Perform whitespace fixes. Use tabs instead of 8 spaces. - Make it build at WARNS=6.
* Fix most cases where the address of an int is passed to a function expecting astefanf2005-02-141-1/+1
| | | | socklen_t * argument.
* Include stdlib.h to get exit()'s prototype.obrien2003-06-021-0/+1
|
* Port to TI/RPC and/or IPV6.alfred2002-07-151-20/+28
| | | | Submitted by: Jean-Luc Richier <Jean-Luc.Richier@imag.fr>
* The .Nm utilitycharnier2002-07-061-4/+6
|
* Spell void * as void * rather than caddr_t. This is complicated by thedes2002-04-281-5/+6
| | | | | | fact that caddr_t is often misspelled as char *. Sponsored by: DARPA, NAI Labs
* o __P removalimp2002-02-072-23/+11
| | | | | o use new style prototypes and function definitions o signal handlers need an argument. Mark it unused.
* Remove whitespace at EOL.dd2001-07-151-2/+2
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* - Backout botched attempt to intoduce MANSECT feature.ru2001-03-261-0/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for libexec/ to 8.ru2001-03-201-1/+0
|
* $Id$ -> $FreeBSD$peter1999-08-284-4/+4
|
* Make these programs compile and work correctly now that /usr/include/rpcsvcwpaul1998-01-191-11/+19
| | | | | | has been ANSI-fied. Pointed out by: bde
* Remove unused #includes and make it compile again with -DDEBUG. Use syslog()charnier1998-01-072-12/+10
| | | | instead of errx() when being a daemon.
* Use err(3). -Wall cleaning. cosmetics in man page.charnier1997-11-263-23/+30
|
* Revert $FreeBSD$ to $Id$peter1997-02-224-4/+4
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-144-4/+4
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* Sort cross references.wosch1997-01-131-2/+2
|
* Correct the ancient paths here in case someone ever uncomments this again.jkh1996-11-051-3/+3
|
* Comment out the XIDLE extension stuff, it breaks make world on systemstorstenb1996-11-041-5/+5
| | | | with Xinside's CDE installed
* Remove trailing whitespace.rgrimes1995-05-302-17/+17
|
* Make two variables static so that the compiler warnings areats1994-11-181-3/+3
| | | | | vanishing. As far as i know rpc.rusersd is single_threaded, so this shouldn't be a problem.
* Reviewed by: Roger Holst roger@first.gmd.deats1994-11-181-1/+2
| | | | | Add an initialization of the len parameter for the getsockname call. Now rpc.rusersd can run under inetd.
* __386BSD__ -> __FreeBSD__jkh1994-11-041-2/+2
| | | | | | I know that many of these entries are bogus and need to be revisited, but let's get the tree working again for now and then do a pass through looking at all the __FreeBSD__ entries, shall we?
* rusersd from FreeBSD 1.1.5.1csgr1994-08-284-0/+578
Reviewed by: geoff. Submitted by: John Brezak
OpenPOWER on IntegriCloud