/external/gpl3/binutils/usr.bin/objdump/

d='header'> cgit logo index : netbsd
NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
path: root/usr.sbin/rpc.bootparamd/bootparamd.c
AgeCommit message (Collapse)Author
2020-04-22_rpcpmstart is defined by rpcgen, so externalize it herejoerg
2019-08-15Stop defining _rpcsvcdirty in bss and datakamil
_rpcsvcdirty is already defined in the generated code from rpcgen(1). Detected during the build with Address Sanitizer (MKSANITIZER).
2011-08-30ANSIFy + static + __deadjoerg
2009-04-18Fix -Wshadow and -Wcast-qual issueslukem
2004-10-30Add (unsigned char) cast to ctype functionsdsl
2004-09-07Replaced strncpy with strlcpy. Thanks to Peter Postma whojrf
pointed them our in PR #25762. Approved by christos@NetBSD.org.
2003-12-25bootparams, not bootparms.wiz
2003-06-26make it possible to obtain default router address from any interface (-i).itojun
-r might be sufficient. http://pc.2ch.net/test/read.cgi/unix/1050823044/377
2002-03-22Split the notion of building Hesiod, Kerberos, S/key, and YPthorpej
infrastructure and using that infrastructure in programs. * MKHESIOD, MKKERBEROS, MKSKEY, and MKYP control building of the infratsructure (libraries, support programs, etc.) * USE_HESIOD, USE_KERBEROS, USE_SKEY, and USE_YP control building of support for using the corresponding API in various libraries/programs that can use it. As discussed on tech-toolchain.
2001-04-11Improve error messages; instead of "getfile failed", now:jhawk
getfile can't resolve client %s getfile can't resolve server %s for %s getfile lookup failed for %s (the second condition had me chasing my tail for a while recently...)
2001-02-19convert to use getprogname()cgd
2001-01-11use explicit name rather than __progname in openloglukem
2000-07-20If we don't get direct match on the token, only attempt to canonicalizethorpej
the token if it does not contain globbing characters, and just skip onto the next line if it does.
2000-07-04If the line wasn't for the client we are looking for, skip it.enami
While I'm here, I indented the continuation line properly.
2000-06-28Add support for globbing when matching the host name in thethorpej
bootparams(5) file, a'la Solaris. This is extremely useful for configuring Jumpstart servers. From Dan Mercer <dmercer@zembu.com>.
2000-06-14Add comment to prevent further bogus commits.tron
2000-06-14Ok, back out previous change. It seems wrong that 'rm -rf /usr/include/*' ↵explorer
doesn't DTRT...
2000-06-14Use %lu since BOOTPARAMVERS is defined as ((u_long)1)explorer
2000-06-08back out previous. I tried hard to make sure that i had up to datedan
rpcgen and headers so that I didn't do something stupid, but somehow I still did something stupid.
2000-06-08tidy up a warning - format specifier for a u_long parameterdan
2000-06-06Revert last change; one needs a new rpcgen and has to do a bit of othercjs
magic described in current-users by fvdl.
2000-06-06BOOTPARAMVERS is apparently a long, so use %lu rather than %u to print it.cjs
2000-06-04Back out the last commit. It seems that your includes are out of date.veego
2000-06-04BOOTPARAMVERS is an unsigned long now, it seemsperry
2000-06-03Fix printf argument mismatch for version number.fvdl
2000-04-27net/if.h is necessary for IFF_LOOPBACK.itojun
accept lo[0-9] or lo$ if we check if_name.
2000-04-14declare new function for getting my IPv4 address.itojun
get_myaddress() is not usable any more for security reasons. the change addresses PR8119.
1999-08-23add better debugging infochristos
1999-06-06Use pidfile(3).thorpej
1999-04-26If -s and/or -d set, report invalid host entries in bootparams when parsed.abs
Currently an invalid entry will cause any subsequent entries to fail if hostlookups take take several seconds (This can happen with DNS). Now we can more easily detect this situation.
1999-03-24Avoid using a long to store an IP address and simplify slightly.nathanw
Makes this work on the Alpha. (What, nobody's netbooted a sun from an alpha before?)
1998-02-12revert; we can't break the existing ABI and APIlukem
1998-02-10use %d instead of %ld to print rpc versionlukem
1997-10-18use memcmp/memset/memmove instead of bcmp/bzero/bcopylukem
1997-09-23be safe with buffers, from dholland@eecs.harvard.edu in pr#4138mrg
1997-09-08kill excess newlines in debug output; from Enami Tsugutomo in PR bin/4076mikel
1997-07-28Fix a bunch of compiler warnings.thorpej
1996-12-08Eliminate local variable `progname'.mycroft
1996-12-08Use daemon() corrently.mycroft
Use err*(3) and warn*(3).
1996-10-14If gethostbyaddr() fails, use inet_ntoa() to turn the IP address intocgd
a dotted-quad string. Make this compile with -Wunused and -Wnested-externs. Kill unnecessary and trivial-to-remove global variables.
1996-10-04compare client names case-insensitively, since hostnames are case-insensitive.cgd
1996-08-30RCS id police.thorpej
1996-03-30Use an integer instead of a char to store the getopt() return value inmark
order to match the function prototype and to work with compilers that default to unsigned chars. Compare the getopt() return value with -1 instead of EOF.