summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* - Detect PAL by CIP header rather than the DSF bit in the DV header.simokawa2003-02-191-71/+48
| | | | | | | | | | | | | | | Some DVcam(ex. Panasonic NV-DS1 DV camcorder) doesn't seems to set this bit even if it's for PAL. Fix the DSF bit for such cases so that we can send back the stream to the DVcam without problem. Problem Reported by: Richard Tobin <richard@cogsci.ed.ac.uk> - Make the number of bulkxfer packets(NPACKET_T) and the number of packets write at once(TNBUF) to be different values. I observe some block noise for large TNBUF. - Show the detection of NTSC or PAL. - Pad with 0xff rather than 0x00 for broken frames. - Bzero hdr[0]. - Remove unused code.
* Bring the suggested command for extracting a configuration file from theceri2003-02-181-1/+1
| | | | | | | | kernel into line with that suggested in LINT. PR: bin/48157 Submitted by: naddy MFC After: 4.8
* Remove contractions.trhodes2003-02-181-3/+3
| | | | Use `Force' in place of `Cause' which sounds better.
* Use arc4random() instead of random() when generating the master key.kris2003-02-181-2/+3
| | | | MFC after: 1 week
* -v now also prints the pnpinfo and location information for the devicesimp2003-02-171-1/+6
| | | | whose bus' provide this information.
* Update copyright.mtm2003-02-162-6/+2
|
* Condense the output to one line per removed user. For user's whomtm2003-02-162-21/+56
| | | | | | want the more verbose version, there's a -v option. Approved by: markm (mentor)
* Add #include <sys/resource.h>phk2003-02-161-0/+1
| | | | | My apologies for missing these #includes, I must have confused the dependencies with a wrong timestamp or something.
* Remove #include <sys/dkstat.h>phk2003-02-161-1/+0
|
* Implemented a simple "nodevice" config(8) command that cancelsru2003-02-152-1/+49
| | | | | | | the effect of the "device" command, and use it to generate the OLDCARD from GENERIC. Suggested by: bde
* Convert to using <sys/queue.h> macros.ru2003-02-156-85/+76
|
* The tcp_wrappers function `fromhost()' can fail. In suchume2003-02-131-2/+16
| | | | | | | cases, the `struct sockaddr' will not be allocated. Reported by: nectar MFC after: 2 days
* Allow multiple hosts or programs to be named in programthomas2003-02-132-6/+39
| | | | | | | | | | | | | or host specifications, eg: !foo,bar *.* /var/log/only_foo_or_bar.log !-foo,bar *.* /var/log/all_except_foo_or_bar.log Reviewed by: roberto Not objected to by: arch@
* Use DIOCGPC98 ioctl to write boot block.nyan2003-02-111-22/+62
|
* Add -DHAVE_ARC4RANDOM to CFLAGSache2003-02-111-1/+1
|
* Use srandomdev() for FreeBSDache2003-02-111-0/+4
|
* There is no sense to use random random() and arc4random() in the same program.ache2003-02-111-2/+1
| | | | Switch to arc4random() completely.
* Add missing srand() (sranddev() for FreeBSD)ache2003-02-111-0/+5
|
* Use sranddev()/srandomdev() for FreeBSDache2003-02-111-2/+10
|
* Allow inner whitespace in the right-hand side of an environment variablethomas2003-02-101-10/+17
| | | | | | | | assignment even if it is not quoted (as advertised by the man page). This fixes a regression wrt RELENG_4 introduced in rev. 1.11. Problem noted and patch tested by: CHOI Junho <cjh@kr.FreeBSD.org> Reviewed by: roberto
* Try to fix two problems with the -I example. One is the fact that wedougb2003-02-101-1/+1
| | | | | | | want to match a character $, not EOL. The other is that CVS helpfully expanded my example into an actual CVS tag. Submitted by: gad
* Explicitly release a existing lease before we start dhclient (again).mbr2003-02-091-0/+1
| | | | | | | | | If we already have a lease and restart sysinstall (or something with the net configuration goes wrong), we would have to reboot just because there is a dhclient hanging around. Reviewed by: murray (re) MFC after: 5 days
* Revisit the shell special characters issue and settle it once-and-forall.mtm2003-02-091-13/+19
| | | | | | | | All characters will be accepted, and pw(8) can sort out which ones it will allow and which ones it won't. Approved by: markm (mentor) Prodded by: Philippe Bourcier <philippe@cyberabuse.org>
* Improve device listing.simokawa2003-02-092-4/+6
|
* Give more information to users replacing sendmail regarding periodic'sgshapiro2003-02-081-0/+11
| | | | | | submit mail queue check. PR: docs/38924
* Change the behaviour of adduser to match the previous incarnation a little more.adrian2003-02-081-2/+26
| | | | | | | | | | | | | If any of the given groups do not exist complain and let the user try again. This saves the user from discovering at the end of the process that they've forgotten to add a group or they've typoed. Thanks to cmc/dougb for pointing out how bad my sh fu actually is. Original code by: me Scary sh rewrite by: dougb Reviewed by: dougb
* Relocate a call to enable inetd so that it is set regardless ofrwatson2003-02-062-4/+2
| | | | | | | whether the user chooses to edit inetd.conf. PR: 39311 Reported by: Martin Faxer <gmh003532@brfmasthugget.se>
* MFS: 1.2.2.2trhodes2003-02-051-1/+1
|
* * Update copyright year.dougb2003-02-051-5/+6
| | | | | | | | | | | | * Give back one line of ws when showing a diff. This was requested by several. * Un-quote DIFF_FLAG, and add DIFF_OPTIONS. This will allow the user to do more creative things in a mergemaster rc file. Un-quoting is necessary in order to handle things like CVS Id tags that look like shell variables. * Simplify terminal width determination. Suggestions related to ignoring the CVS Id's were taken from several, with dillon and gad providing particularly helpful feedback.
* * Update copyright year.dougb2003-02-051-2/+5
| | | | * Add an example that ignores CVS Id tags for the new DIFF_OPTIONS variable.
* Added MI version of <sys/imgact_aout.h>, "a.out.h", which isru2003-02-042-2/+87
| | | | | | | always compatible with the i386 version. This fixes one of the problems I had cross-releasing i386 on Alpha: the produced "-f aout" binaries are now identical.
* Always build kgzip(8); needed to cross-release i386.ru2003-02-041-1/+1
|
* Make this work on non-i386 as well. (Needed for cross-releases.)ru2003-02-042-2/+3
|
* Better gender-neutral language.fanf2003-02-041-2/+2
| | | | Submitted by: sheldonh
* even the default case in a switch requires some action (add break;)billf2003-02-031-1/+2
| | | | | EVP_sha1() returns a const EVP_MD *, so reflect that in the variable we store its return value in.
* Fixup capitalization in some of the Startup menu entries.jhb2003-02-032-12/+12
| | | | Submitted by: Hiten Pandya <hiten@unixdaemons.com>
* Remove this Makefile, these docs are built by the Makefiles in ↵trhodes2003-02-011-11/+0
| | | | src/share/doc/smm.
* No need for the OPENSSL_NO_KRB5 switch anymore.markm2003-01-312-2/+0
| | | | Fixed by: nectar
* - Modernize the format of the open file showing mode output:robert2003-01-311-10/+23
| | | | | | | | | | | | | | | | | | . Print the column headers centered (except for the left-aligned TYPE header) using a different header for architectures where sizeof(uintptr_t) is not four. . Consistently do not print a '0x' prefix for hexadecimal values. . Separate columns by a single space character. . Pad the columns presenting an address or offset enough to hold their respective largest value. . Do not restrict the output to unknown file types, inodes and sockets; allow displaying of pipes, fifos, kqueues and crypto file descriptors too. - Shorten an overly long line by removing a cast of printf's return value to void. PR: alpha/45240 Tested on: i386, sparc64, alpha
* Eliminate hard sentence breaks.trhodes2003-01-301-4/+4
|
* Grammar cleanup.trhodes2003-01-302-5/+5
| | | | | | PR: 34529 Submitted by: David Sieborger <drs@rucus.ru.ac.za> (original version) With comments by: keramida
* Improve alignment in printf().simokawa2003-01-301-1/+1
|
* Part 1/3 of unbreaking cross releases:ru2003-01-292-1/+58
| | | | | | | | | Back out the removal of custom version of endian.h system header. On recent systems, it just falls back to <sys/endian.h>. But on older systems like 5.0-DP1 or 4-STABLE, this private version may be necessary, as crunchide(1) is a cross-tool for "make release". Spotted by: kris, markm
* iAdjust for OpenSSL 0.9.7.markm2003-01-282-0/+2
|
* Backout last commit by request.dillon2003-01-281-44/+11
|
* - Search free device node to open. (fwcontrol.c)simokawa2003-01-283-94/+135
| | | | | - Exploit multiple packets read/write for DV stream. (fwdv.c) - Add reference to libdv in the ports collection. (fwcontrol.8)
* Changes so the 'pw' command will allow '$' as the last character in a useridgad2003-01-281-14/+51
| | | | | | | | | | | or group name (mainly for the benefit of samba). This pretty much rewrites he pw_checkname() routine, but should work exactly the same except for the above change, and that error messages are somewhat more informative. PR: 28733 46890 Inspired by: example patch written by Terry Lambert Reviewed by: no objections on freebsd-arch and freebsd-current MFC plans: no plans, but will do if people want it in stable.
* Teach sysinstall about the em(4) device.trhodes2003-01-272-0/+2
| | | | | | | | PR: 46439 Submitted by: Dan Lukes <dan@obluda.cz> Approved by: re (murray) Tested? yes MFC: 1 day
* Note that -c is no longer supported. This was requested by a few users andtrhodes2003-01-271-0/+4
| | | | | | | | we even have a PR about it. PR: 47388 Discussed with: bmah Requested by: many
* Correct typo.murray2003-01-262-2/+2
| | | | Submitted by: Andreas Kohn <andreas.kohn@gmx.net> (via -STABLE)
OpenPOWER on IntegriCloud