summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-07-30Move to the new API for the client-server protocol. All functions nowJean-Francois Brousseau
take a cvs root structure as parameter. This will allow for much easier management of CVS trees that make use of multiple roots.
2004-07-30Do not negotiate or use non-async transfer rates until probing (i.e.Kenneth R Westerback
SCSI_POLL'ing) is complete. Similar to what is done on mpt, ahc, ahd, etc. This fixes problems during probe on hppa. Problems found & ok mickey@.
2004-07-30Use '#!/bin/ksh' for install scripts, as we use so many ksh'isms. Some ofKenneth R Westerback
which will be disabled for /bin/sh invocations soon. Requested by millert@. ok pval@.
2004-07-29Document the CARP header layout.Ryan Thomas McBride
2004-07-29Less noise while debugging.Hakan Olsson
2004-07-29New protocol API commented out, not ready yetJean-Francois Brousseau
2004-07-29Define a flag to tell if a request expects a response. This will laterJean-Francois Brousseau
allow us to do implicit response handling and remove the third argument to cvs_client_sendreq()
2004-07-29No more cvs_rootJean-Francois Brousseau
2004-07-29Don't export `cvs_root'Jean-Francois Brousseau
2004-07-29Make cvs_client_sendinfo() aware of its root context and remove theJean-Francois Brousseau
exporting of cvs_root
2004-07-29No need to import the `cvs_root' symbol anymore, it is done in cvs.hJean-Francois Brousseau
2004-07-29Use the `CVS' define to simplify exporting symbolsJean-Francois Brousseau
2004-07-29Remove debugging statementsJean-Francois Brousseau
2004-07-29undefine DEBUGJean-Francois Brousseau
2004-07-29Do not error out when calling rcsnum_aton() on the string "0", which isJean-Francois Brousseau
a valid RCSNUM
2004-07-29update meatJean-Francois Brousseau
2004-07-29Loop on the call to getdirentries() until there are no more entries.Jean-Francois Brousseau
Before this, only the first entries of the directory that fit in the buffer were loaded
2004-07-29Initalize local varible in rde_update_get_prefix or we may end up with funnyClaudio Jeker
prefixes.
2004-07-29* move to tail queues for file list managementJean-Francois Brousseau
* when generating the list of files for a directory, put all the subdirectories at the end, sorted
2004-07-29typoJean-Francois Brousseau
2004-07-29Use tail queues instead of lists to manage file entriesJean-Francois Brousseau
2004-07-29* when comparing timestamps, use the last modification time insteadJean-Francois Brousseau
of the last access time. No wonder all the files appeared as modified * always show directories as up to date * skeleton for cvs_file_getspec()
2004-07-29Define 'CVS' or 'CVSD' depending on which program we are compiling andJean-Francois Brousseau
add a bunch of warnings for cvs
2004-07-29don't wipe lease file on startup, found & solution tested nick@Henning Brauer
2004-07-29add a margin when formatting w/ -Tascii; plus a few very minor changes;Jason McIntyre
2004-07-29keep an ID per server we talk toHenning Brauer
2004-07-29note that some directories in /usr/share/doc are empty, and why;Jason McIntyre
2004-07-29some updates and corrections;Jason McIntyre
also, add margin when formatting w/ -Tascii;
2004-07-29Report DPD notifications. Cleanup. markus@ ok.Hakan Olsson
2004-07-29Update sets sizes, due to profiling libraries.Miod Vallat
2004-07-29Better diagnostic message on MVME188 interrupt handler, when we are unable toMiod Vallat
fetch the VMEbus interrupt vector in time.
2004-07-29proper condition for freeing a page and fix a comment appropriately; art@ ↵Michael Shalayeff
tedu@ ok
2004-07-29Repair NAT-T using Aggressive mode, NAT-D checks were in the wrong place.Hakan Olsson
Noted by Yvan VANHULLEBUS.
2004-07-29put the scheduler in its own file. reduces clutter, and logically separatesTed Unangst
"put this process to sleep" and "find a process to run" operations. no functional change. ok art@
2004-07-29Don't set the output filename when in -t mode. Avoids an error whenTodd C. Miller
the input filename lacks a .gz. OK mickey@
2004-07-29we no longer need to query ip6.int for reverse lookup. pvalchev okJun-ichiro itojun Hagino
2004-07-28note that uucp is not part of base install, but can be installed w/Jason McIntyre
ports(7) or packages(7). copied verbatim from uucpd(8). also, remove commented out Xrs to uucp(1), and put a comma in a sentence that needs it.
2004-07-28hostname.tun can be used to set link0, so add standard hostname.if(5)/Jason McIntyre
netstart(8) blurb; spotted by Alexey E. Suslikov; also, add hostname.if(5) and netstart(8) to SEE ALSO;
2004-07-28Add itimer.Artur Grabowski
2004-07-28Very crude tests that check that itimers are at least pretending to work.Artur Grabowski
2004-07-28.Xr growfs 8Jason McIntyre
2004-07-28sort options, and fix a spurious list width;Jason McIntyre
2004-07-28- sort optionsJason McIntyre
- sync usage() - use -keeps for SYNOPSIS
2004-07-28Use SHA1Pad() instead of relying on unspecified behavior.Todd C. Miller
2004-07-28Remove statement with no effect.Todd C. Miller
2004-07-28This touches only MI code, and adds new time keeping code. TheThorsten Lockert
code is all conditionalized on __HAVE_TIMECOUNTER, and not enabled on any platforms. adjtime(2) support exists, courtesy of nordin@, sysctl(2) support and a concept of quality for each time source attached exists. High quality time sources exists for PIIX4 ACPI timer as well as some AMD power management chips. This will have to be redone once we actually add ACPI support (at that time we need to use the ACPI interfaces to get at these clocks). ok art@ ken@ miod@ jmc@ and many more
2004-07-28Prefer the path with the lowest multi-exit discriminator (MED) not the biggest.Claudio Jeker
2004-07-28allow "set metric" as synonym for "set med", from discussion with & ok claudioHenning Brauer
2004-07-28prevent unresolvable hostnames in "listen on" statementsHenning Brauer
2004-07-28when a dns lookup fails at parse time, do not abort but try againHenning Brauer
to resolve the hostname every 60 seconds fixes ntpd invocations before e. g. a dialup link is established and such. as we want ntpd to be a "fire and forget" background daemon it should cope with such situations. tested by many