summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Push down Giant for setpgid(), setsid() and aio_daemon(). Giant protects onlytanimura2002-04-204-12/+25
| | | | malloc(9) and free(9).
* Use `The .Nm utility'charnier2002-04-204-10/+12
|
* Replace inline asm with it's inline function wrapper.benno2002-04-202-2/+2
|
* Fix TZ & TERM handling for use_login case of rev. 1.24ache2002-04-201-4/+6
|
* 1) Surprisingly, "CheckMail" handling code completely removed from thisache2002-04-202-2/+24
| | | | | | | version, so documented "CheckMail" option exists but does nothing. Bring it back to life adding code back. 2) Cosmetique. Reduce number of args in do_setusercontext()
* Fix controller in SW mode and See also + first appeared in 4.5.nsouch2002-04-201-8/+8
|
* - Create a ``zero fill'' constructor for uma_zcreate's ctor argument.arr2002-04-202-0/+11
| | | | Inspired by: jake@
* reorg a little.obrien2002-04-201-7/+7
|
* I decided I don't want to be part of this.jake2002-04-201-1/+0
|
* Reintroduce locking on accesses to vm_object_list.alc2002-04-203-1/+10
|
* 1) Fix overlook in my prev. commit - forget HAVE_ prefix in one place in oldache2002-04-201-4/+11
| | | | | | | code merge. 2) In addition honor "timezone" and "term" capabilities from login.conf, not overwrite them once they set (they are TZ and TERM variables).
* Add character translation table between Unix and NetWare accordingbp2002-04-204-19/+98
| | | | | | | to Sweden standards. Submitted by: Roger Olofsson <roger.olofsson@kommun.engelholm.se> MFC after: 1 week
* s/nwserv/nwfs/bp2002-04-201-1/+1
| | | | | Submitted by: Victor Sudakov <sudakov@sibptus.tomsk.ru> MFC after: 1 week
* Describe situation where manual 'ifconfig xx0 up' required.bp2002-04-201-2/+7
| | | | Submitted by: Victor Sudakov <sudakov@sibptus.tomsk.ru>
* Please repeat after me: setusercontext() modifies _current_ environment, butache2002-04-201-24/+58
| | | | | | | | | | sshd uses separate child_env. So, to make setusercontext() really does something, environment must be switched before call and passed to child_env back after it. The error here was that modified environment not passed back to child_env, so all variables that setusercontext() adds are lost, including ones from ~/.login_conf
* In the BUGS section, mention that the ballooning of size mentioned here isjmallett2002-04-201-2/+2
| | | | | | | with regard to the traditional algorithm. Suggested by: obrien MFC after: 1 week
* Use fwrite(3) to write out the decoded information, as the b64 decoding stuffjmallett2002-04-201-1/+1
| | | | | | | | won't NUL terminate the string for us, and so we're liable to pick up trailing garbage, possibly tons of it. Pointed out by: obrien MFC after: 3 days
* base64_decode() was feeding \r and \n to the decoding function, and thatjmallett2002-04-201-0/+4
| | | | | | | was causing output to be corrupted. Pointed out by: obrien MFC after: 3 days
* Add typedef of sa_family_t to <sys/un.h>, per POSIX and X/Open. Hidemike2002-04-201-1/+14
| | | | portions of <sys/un.h> when a standard has been requested.
* Add sa_family_t type to <sys/_types.h> and typedefs to <netinet/in.h>mike2002-04-203-2/+12
| | | | | and <sys/socket.h>. Previously, sa_family_t was only typedef'd in <sys/socket.h>.
* Remove <ctype.h> - not neededache2002-04-201-1/+0
|
* Prevent sign extension (again)ache2002-04-201-1/+1
|
* Allow space between -a and its argument. Honour locale collating ordertjr2002-04-202-16/+12
| | | | | | | by using strcoll() instead of strcmp(). PR: 36270 Reviewed by: mike
* Crank WARNS.jmallett2002-04-209-42/+47
| | | | | | | | | | | | | | | | | | | | | | | | | Cast sizeof() to (int), as it's being compared against an int, not a size_t. If i is changed to a size_t, it means the logic must be slightly changed later in the flow, where --i is checked to be >= 0. I am not sure I want to make a logic change to account for clearing up a warning, when an aesthetic one will keep from modifying the logic. Other harmless casts, that I think I've made in the right directions. Make gpbc() an inline function, rather than an obfuscated macro, make its scratch space local, rather than global. The previous macro used a dirty hack (logical AND in place of a conditional) which would lead GCC to throw a fit (rightly so) as the logical check, as well as the incrementation of a variable, were not used for anything. const'ify a few places where gcc3 yells. xstrdup() some global consts in places where we xstrdup() when not using consts, but tried to assign them to non-consts before. Don't use execv(2) if we don't have the kind of arguments it wants. Reviewed by: asmodai obrien tjr Submitted by: tjr (a gcc3 build log)
* Don't put a line break in string literals. GCC 3.1 complains and GCCmarcel2002-04-202-26/+20
| | | | 3.2 drops the ball.
* Improve style consistency of vfs_syscalls.c by converting the style usedrwatson2002-04-202-106/+164
| | | | | | | | | | | | | in various extattr_*() calls to match the rest of the file. Originally, these bits at the end looked more like style(9). This patch was submitted by green by way of the TrustedBSD MAC tree, and I fixed a few problems with it on the way through. Someone with more time on their hands should convert the entire file to style(9); this commit is for diff reduction purposes. Submitted by: green Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* Don't put a line break in string literals. GCC 3.1 complains and GCCmarcel2002-04-201-2/+2
| | | | 3.2 drops the ball.
* It is easier for me to debug with -I's at the rear.obrien2002-04-201-1/+1
|
* Spelling fix for comment.rwatson2002-04-201-1/+1
|
* Comment out and mark broken the hea and hfa devices until someone hasmike2002-04-201-2/+3
| | | | time to fix them.
* - Nuke small sgi ifdef bits.arr2002-04-202-9/+0
|
* Bump WARNS to 4.jmallett2002-04-202-0/+2
|
* In the case where we can't open /dev/tty, fall back to -t behaviour.jmallett2002-04-191-9/+7
| | | | Submitted by: fenner
* Bump WARNS to 4.jmallett2002-04-191-0/+1
|
* Use `The .Nm utility'charnier2002-04-1926-112/+159
|
* Compound two fprintf(3)s into 1 using string concatenation.jmallett2002-04-191-2/+1
|
* Fix compiling of acpica when debugging is enabled. In the previousmike2002-04-191-2/+7
| | | | | | revision, two getenv()s were accidentally changed to use testenv(). Pointy hat to: mux
* After 3 months...jmallett2002-04-194-44/+272
| | | | | | | | | | | | | | | | | Merge xargs(1) with that of xMach. Bring in xargs(1) changes to add -L and -I as per the Single Unix Specification version 3. Proper exit status numbers are implemented, and the manual page has been updated to reflect reality. The code has been ANSIfied, and a new file has been added to xargs(1) to do the substring substitution as SUSv3 requires. Traditional behaviour should not be affected, use of -J should be deprecated in favor of the more portable -I (though -J has been left, for now). Submitted by: me, tjr (the exit status stuff) Obtained from: xMach
* Use `The .Nm utility'. Introduce options with well known sentence.charnier2002-04-191-8/+11
|
* Add .Pp before enumerating optionscharnier2002-04-192-0/+2
|
* Use `The .Nm utility'charnier2002-04-192-8/+10
|
* Clean up:alfred2002-04-192-8/+20
| | | | | | | | Comment run_filter() to explain what it does. Remove chatty comments. void busdma_swi() { } -> void busdma_swi(void) { }
* Move tx(4) driver to sys/dev/tx. BTW split hardware structures and constantssemenu2002-04-197-2716/+14
| | | | | | into if_txreg.h. MFC after: 1 week
* Make this build on 4.x machines again (building a -current kernel on aimp2002-04-193-36/+27
| | | | | | | | | | | | -stable machine via the old-school methods): Use __FreeBSD_version in preference to __FreeBSD__ >= N where possible. Define a single variable mythread which is set to curproc or curthread depending on the OS version (with a comment saying it is a white lie on 4.x since it really is a proc). NB: __FreeBSD__ is the OS level of the host machine, not the target, and should never be used, if possible, as __FreeBSD__ >= N.
* - Nuke some more #ifdef sun related sections.arr2002-04-194-41/+1
|
* - Nuke some #ifdef sun4m code; it hasn't been updated in 4 years and is notarr2002-04-192-69/+0
| | | | being used.
* Prevent sign extension on characters with 8bit setache2002-04-191-1/+1
|
* Change lpd to recognize the '-s' parameter as a preferred synonymgad2002-04-192-13/+26
| | | | | | | | | | for what is currently the '-p' parameter. '-s' is what NetBSD used (and they implemented it before I added -p in FreeBSD), and it also matches the '-s' option in syslogd. Someone in OpenBSD land had also talked about adding a '-s' option, but it hasn't happened yet. MFC after: 5 days
* Remove a safety-setting line which is unnecessary now that the previousgad2002-04-191-1/+0
| | | | | | line is using strlcpy instead of strncpy. MFC after: 4 days
* Fix 'deamon' -> 'daemon' in a comment.gad2002-04-191-1/+1
| | | | | Obtained from: NetBSD, OpenBSD MFC after: 4 days
OpenPOWER on IntegriCloud