summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed printf format errors.bde1998-08-023-7/+7
|
* Fixed printf format warnings for non-errors. This change is null unlessbde1998-08-021-0/+4
| | | | | | a system header defines a macro __printf0like() using the new printf0 format attribute. uucp's internal ulog() function isn't actually printf-like but uucp normally declares it as such.
* Fixed printf format errors (time_t is not necessarily long).bde1998-08-021-3/+5
|
* Oops, the SRCDIR=${.OBJDIR} hack is still necessary, (since bsd.doc.mkbde1998-08-021-1/+1
| | | | | has to cd to ${SRCDIR} to support inclusion messes elsewhere). Fortunately the previous commit forgot to remove it.
* Cleaned up. tmac.srefs was in both SRCS and EXTRAS. Thebde1998-08-021-10/+10
| | | | | SRCDIR=${.OBDDIR} hack is now unnecessary. It was never necessary to use so many explicit paths to ${.OBJDIR} and ${.CURDIR}.
* Don't use `::' to break dependencies. Cleaned some nearby things.bde1998-08-021-6/+5
|
* Use a different hack in the ${DFILE} rule to keep indirect dependenciesbde1998-08-021-18/+11
| | | | | | | | | | | | | (mostly for includes) separate from direct dependencies (so that ${.ALLSRC} can be used to find full paths to the sources for the direct dependencies only). The `::' hack just forgot the indirect dependendencies. This broke building doc/usd/13.viref with `make -jN' - the index got corrupted by being built twice concurrently. Cleaned up the ${DFILE} rule. There was a .else clause with dead code in it following a .else clause (make accepts this bad syntax). ${.ALLSRC} now works in the USE_SOELIMPP case. Some client Makefiles no longer need the SRCDIR=${.OBJDIR} hack.
* PR: 7469brian1998-08-023-4/+11
| | | | | | Be careful that the current or next prompt in the list that we're iterating through doesn't get changed by descriptor_Read().
* Add the ISP Qlogic SCSI card to the list of known devices.gpalmer1998-08-021-2/+4
|
* Malformed conditional if MACHINE_ARCH is not defined. From rev 1.195.wosch1998-08-021-3/+3
|
* On receipt of a sig 15, do a full bundle_Close() even ifbrian1998-08-022-7/+3
| | | | | our current phase is PHASE_DEAD as it's possible that there are links stuck in OPENING waiting for a redial timer.
* Added 82555B support for media status.dg1998-08-022-2/+4
|
* Reordered fxp_softc for optimal cacheline behavior.dg1998-08-022-16/+20
|
* Killed unused variable/assignment.dg1998-08-022-4/+2
|
* Introduce KRB5_HOME variable.dima1998-08-013-3/+24
|
* Avoid trying to malloc > (1<<32) bytes of memory due to an arithmeticdfr1998-08-013-6/+6
| | | | underflow on the alpha.
* Added iso646.h as defined by the Single UNIX Specification, version 2.alex1998-08-012-2/+46
|
* Sync with sys/i386/boot/netboot/main.c revision 1.23.kato1998-08-011-0/+1
|
* Fix reference to /usr/share/misc/iso3166.des1998-08-011-16/+31
| | | | PR: misc/7459
* If we get an ENOBUFS from the network, it's normally transient networkpeter1998-08-013-3/+33
| | | | | | | | | interface congestion (eg: nfs over a ppp link, etc). Don't log these for UDP mounts, and don't cause syscalls to fail with EINTR. This stops the 'nfs send error 55' warnings. If the error is because the system is really hosed, this is the least of your problems...
* Fix a compile error if IPFIREWALL_FORWARD active without IPDIVERT.peter1998-08-011-3/+2
|
* When we receive an LCP config REQ in Opened state,brian1998-08-011-6/+8
| | | | | | | | do TLD *before* processing the config request as TLD initialises the peers LCP values. It's strange that an IRC isn't required here - but I'll bow to the wisdom of the rfc.
* Cosmetic: Diagnostic wording (Unknown -> Unexpected)brian1998-08-011-4/+14
|
* Always dial immediately on ``open'', ``dial'' and ``call''.brian1998-07-313-31/+12
| | | | We don't need a ``!''.
* Cosmetic change to driver registration.dfr1998-07-313-6/+6
|
* Make it possible to have a driver registered with more than one parent bus.dfr1998-07-311-16/+17
|
* Only perform byte/word accesses in the correct EV56 memory space.dfr1998-07-311-78/+69
| | | | | | Sparse macros have moved to <machine/swiz.h>. Fix sparse memory access so that it actually works as intended. Tidy up sparse configuration access slightly.
* Add definitions of EV56 INT1/INT2/INT4/INT8 memory spaces.dfr1998-07-311-1/+9
|
* Merge with i386/isa/diskslice_machdep.c 1.30dfr1998-07-311-32/+14
|
* I've put together man pages for the pthread_cleanup, pthread_cond, andphk1998-07-3144-4/+2838
| | | | | | | | pthread_mutex routines. I've also tweaked pthread_create.3 to point to pthread_cleanup_push(3) and pthread_cleanup_pop(3). PR: 7450 Submitted by: Brian Cully <shmit@kublai.com>
* TFTP_ACK goes to port 69 (default tftp port) and tftpd says 'Timeout'.phk1998-07-311-0/+1
| | | | | | | | It will be sent to source port of received packet. PR: 7442 Reviewed by: phk Submitted by: Sergey Shkonda <serg@bcs.zp.ua>
* In sys/scsi/st.c, st_close() does not check for errors from callingphk1998-07-311-3/+4
| | | | | | | | | | st_write_filemarks(). This means that it is possible to write a file on the tape for which all the writes and the close return without errors, but the all bits did not make it onto the tape. PR: 741 Reviewed by: phk Submitted by: Andrew Heybey <ath@niksun.com>
* ndc hardcodes 'named' instead of using $named_program from rc.confphk1998-07-311-2/+2
| | | | | | PR: 7425 Reviewed by: phk Submitted by: frf <frf@xocolatl.com>
* Backed out rev.1.31. It was a workaround for bugs in rev.1.4 ofbde1998-07-311-5/+1
| | | | | | | | | | | | | | libc/gen/getpass.c. The old behaviour of blocking SIGINT and not changing SIGQUIT was restored in rev.1.5 of getpass.c. The change here completely restores the old behaviour of not supporting killing login with keyboard signals (only) at the password prompt. There is no reason to support this, since login can be exited normally by typing a couple of ^D's. Login certainly shouldn't dump core in response to user input. Previously, SIGQUIT killed login immediately but SIGINT killed it only after the password was entered. PR: 7444
* Fix coredump when two signals are sent in rapid succession.hoek1998-07-312-2/+3
| | | | | | | | | PR: bin/5721 Submitted by: Oliver Fromme <oliver.fromme@heim3.tu-clausthal.de> Also, add "volatile" to a variable modified by signal handlers (coincidentally, the same variable involved in the above fix, although this isn't related to the reported problem).
* Fixed printf format errors.bde1998-07-308-80/+94
|
* Fixed printf format errors.bde1998-07-302-4/+4
|
* Use the slice interfaces for SCSI cdroms. This centralizes handlingbde1998-07-301-203/+115
| | | | | | | | | | | of some disk ioctls and uniformizes bounds checking in the strategy routine. EOF handling got fixed as a side effect. The changes are similar to old changes for SCSI disks, except slices and labels are not searched for on the disk and the in-core label has a few more details (mostly just for backwards compatibility). Bugs in the in-core label had to be fixed to get dsopen() to accept it. The slice interfaces had to support large sectors for all this to work.
* Added a flags arg to dsopen() and updated drivers. The DSO_ONESLICEbde1998-07-309-36/+53
| | | | | | | | | | | and DSO_NOLABELS flags prevent searching for slices and labels respectively. Current drivers don't set these flags. When DSO_NOLABELS is set, the in-core label for the whole disk is cloned to create an in-core label for each slice. This gives the correct result (a good in-core label for the compatibility slice) if DSO_ONESLICE is set or only one slice is found, but usually gives broken labels otherwise, so DSO_ONESLICE should be set if DSO_NOLABELS is set.
* Sync with sys/i386/isa/fd.c revision 1.120.kato1998-07-302-114/+124
|
* Change load address to 0xfffffc0000300000 to help support AS200.dfr1998-07-306-9/+9
|
* Remove spurious printf.dfr1998-07-301-2/+1
|
* Document behaviour of "-" and "--" on the command line.jkoshy1998-07-301-2/+7
| | | | PR: docs/5399
* Document meanings of flags to the -r and -s options.jkoshy1998-07-301-6/+28
|
* add anti-panic workaround from chris radek (cradek@in221.inetnebr.com)julian1998-07-302-0/+4
| | | | Not sure why this is needed but but does stop crashes.
* Typo fix: teh --> (the|they)alex1998-07-304-7/+7
|
* Remove ppp 3000/tcp. Ppp has nothing in common with port 3000.brian1998-07-291-2/+1
|
* Add singlehand dvorak keyboard layouts, one for right hand use andsos1998-07-293-1/+237
| | | | | | one for lefthand use. Submitted by: "Chris Csanady" <cc@tarsier.ca.sandia.gov>
* Fixed sign extension bugs awoken by changing speed_t to an unsignedbde1998-07-293-6/+12
| | | | | | | type. 19200, 1200 and other relatively uninteresting speeds were broken. Submitted by: Rob Mallory <rmallory@qualcomm.com>
* Only access an int for READU/WRITEU since that is what ptrace is declared todfr1998-07-291-2/+2
| | | | return.
OpenPOWER on IntegriCloud