summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed breakage of my world in rev.1.30. #include <sys/time.h> instead ofbde2003-11-011-13/+9
| | | | | | | | | | | | | depending on namespace pollution in <sys/stat.h> for the declarations of struct timeval and utimes(). Fixed some style bugs in rev.1.30 and some nearby style bugs (mainly unsorting and missing or extra blank lines). Removed a wrong comment that was obtained from NetBSD in rev.1.14. It said that chflags() reset the times that were set "above" by utimes(), but utimes wasn't "above" in FreeBSD until rev.1.30, and chflags() does't actually reset the times.
* Temporarily disconnect ipfstat, ipnat, and ipftest to unbreak world.brooks2003-10-311-2/+1
| | | | Pointy hat to: brooks
* Replace the if_name and if_unit members of struct ifnet with new membersbrooks2003-10-311-3/+1
| | | | | | | | | | | | | if_xname, if_dname, and if_dunit. if_xname is the name of the interface and if_dname/unit are the driver name and instance. This change paves the way for interface renaming and enhanced pseudo device creation and configuration symantics. Approved By: re (in principle) Reviewed By: njl, imp Tested On: i386, amd64, sparc64 Obtained From: NetBSD (if_xname)
* Make mtree's update function update the modification time too.phk2003-10-313-3/+53
| | | | | Submitted by: Dan Nelson <dnelson@allantgroup.com> PR: 53063
* fixe remote panic on short packetsuz2003-10-311-0/+5
| | | | Obtained from: KAME
* Use -D to rename the log() function (extensively used) rather thanpeter2003-10-301-1/+1
| | | | using the gcc-specific -fno-builtin-log switch.
* Rename the 'log' variable rather than -fno-builtin-logpeter2003-10-302-8/+7
|
* Rather than use the gcc -fno-builtin-log flag, just rename the 'int log'peter2003-10-302-5/+4
| | | | variable.
* add ip6addrctl(8) which is a command to configure addressume2003-10-305-0/+602
| | | | | | | | selection policy for IPv6 and IPv4 described in RFC3484. source address selection part of RFC3484 is not merged from KAME, yet. Obtained from: KAME
* Update test-case to also fail on filenames containing '#'phk2003-10-301-0/+17
|
* Use vis(3) to encode/decode the target for symlinks.phk2003-10-302-10/+13
| | | | Make vis(3) decode errors fatal for both symlink targets and fienames.
* Add another test-script for mtree(8): Check symlinks with space in them.phk2003-10-301-0/+40
|
* Fix bug in mtree(8)'s create mode where files or directories with hadphk2003-10-301-1/+1
| | | | | | | | names containing glob(3) expressions would appear verbatim in the output. If such an mtree file were used by mtree in update mode, wrong things would happen.
* Add a test script which Mtree fails.phk2003-10-301-0/+51
|
* Basic PAM authentication support.ru2003-10-292-0/+56
|
* Disclaim ownership of pppd/chat. It is vendor code, but has been badlypeter2003-10-291-2/+2
| | | | neglected here.
* Add a newline even if IAPC_BOOT_ARCH == 0.njl2003-10-291-1/+2
|
* Don't pass NULL as an integer.mbr2003-10-291-1/+1
| | | | Obtained from: NetBSD
* Don't compare a char to NULL.mbr2003-10-292-3/+3
| | | | Obtained from: NetBSD
* fix comment.ume2003-10-261-1/+1
|
* one more IPV6_PKTINFO -> IPV6_RECVPKTINFO.ume2003-10-261-1/+1
|
* Deal with xdrproc_t casts. Make these compile cleanly with WARNS=2peter2003-10-265-7/+12
| | | | (but I haven't turned it on)
* Since semantic of IPV6_PKTINFO was changed in RFC3542, we need toume2003-10-261-1/+1
| | | | | | use IPV6_RECVPKTINFO instead. Reported by: someone (I had removed the mail wrongly, sorry)
* Make this compile cleanly. It passes WARNS=2, but I haven't checkedpeter2003-10-265-29/+44
| | | | it is so on more platforms.
* Fix a 64 bit time_t bogon that I missed from before. lastlog.ll_time ispeter2003-10-261-1/+1
| | | | not a time_t.
* Use -fno-builtin-log. Fix svc_sendreply() missing required casts.peter2003-10-262-13/+17
| | | | It is now WARNS=2 clean again.
* Use -fno-builtin-log so gcc doesn't get ideas about using a math functionpeter2003-10-262-2/+3
| | | | | to log data. Clean up an unused variable that was hidden by the WARNS?=2 being commented out. Uncomment it now that it compiles cleanly again.
* Make this compile cleanly. Switch to using rpcgen to generatepeter2003-10-262-5/+7
| | | | | code that can be compiled on an ansi-C compiler, so that it puts the xdrproc_t casts in. This also implies a slight function name change.
* Make 64 bit safe.peter2003-10-262-6/+6
|
* Disable the log() builtin (the math function), because it will not do muchpeter2003-10-261-1/+1
| | | | logging of information like the program expects.
* When we pass a string as auxillary data (type long), be sure to convertpeter2003-10-262-2/+4
| | | | it to a suitable type for the initialization.
* Fix a warning about mismatched pointers. A pointer to "void *" is not thepeter2003-10-261-1/+1
| | | | same as a pointer to "char *". Tell the compiler this is ok.
* fix spelling of ATTACHjmg2003-10-251-1/+1
| | | | | | Submitted by: Johny Mattsson MFC after: 2 week (do to code freeze)
* update for conserver-8.0.4.simokawa2003-10-251-2/+10
|
* remove debug message.simokawa2003-10-251-1/+0
|
* - Renumber the skerberos4 dist to fill in the gaps left when krb4 was axed.jhb2003-10-241-2/+2
| | | | - Update the DIST_CRYPTO_ALL value to match reality.
* Switch Advanced Sockets API for IPv6 from RFC2292 to RFC3542ume2003-10-243-18/+99
| | | | | | | | | | (aka RFC2292bis). Though I believe this commit doesn't break backward compatibility againt existing binaries, it breaks backward compatibility of API. Now, the applications which use Advanced Sockets API such as telnet, ping6, mld6query and traceroute6 use RFC3542 API. Obtained from: KAME
* show maxmtu.ume2003-10-241-0/+1
| | | | Obtained from: KAME
* Add dumb console driver and related bits.simokawa2003-10-244-0/+1201
| | | | | | | | dcons(4): very simple console and gdb port driver dcons_crom(4): FireWire attachment dconschat(8): User interface to dcons Tested with: i386, i386-PAE, and sparc64.
* Mention the fact that our crontab is not fully POSIX.2 conform, becauseharti2003-10-241-2/+7
| | | | | it doesn't allow the dangerous variant of calling it without any argument.
* Allow nghook to execute a program with the data socket connected toharti2003-10-242-13/+109
| | | | | | | | | | | | stdin and stdout instead of relaying the data. Now it is possible to say: nghook -e path: hook /usr/local/bin/foo arg1 arg2 and foo will have the hook to path: at file descriptors 0 and 1. Add an option to specify control messages to be send to the node before either executing the program or entering the data relay loop.
* - styleume2003-10-231-145/+131
| | | | | | | - index() -> strchr() - stop use of MAXHOSTNAMELEN Obtained from: KAME
* Add '0x' in front of EUI64 to avoid confusion.simokawa2003-10-221-2/+2
|
* stop use of NI_WITHSCOPEID. it was deprecated.ume2003-10-213-24/+7
| | | | Obtained from: KAME
* Remove clause 3 in the copyrights (according to permission in src/COPYRIGHT)phk2003-10-219-47/+15
| | | | Remove trailing whitespace.
* Remove "register" keywords.phk2003-10-216-60/+35
| | | | Use newspeak functions definitions.
* Various NFS-related bug fixes (mostly related to using variable_get()des2003-10-196-3/+19
| | | | | | instead of variable_cmp() to test boolean rc.conf variables). Submitted by: hmp
* don't print ndp -i result if the interface is notume2003-10-171-0/+5
| | | | | | initialized Obtained from: KAME
* - NI_WITHSCOPEID was deprecatedume2003-10-171-155/+151
| | | | | | | | - use strlcpy() and snprintf() - use err() - style Obtained from: KAME
* - styleume2003-10-171-25/+28
| | | | | | | | - rename variable - use strlcpy - const'fy Obtained from: KAME
OpenPOWER on IntegriCloud