summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-04-02test char against '\0', not 0Kjell Wooding
2006-04-02When setting timestamps TOSERVER having write permissions is adaquate;Otto Moerbeek
problem experienced by Han Boetes; fix with "nfs4" rick at snowhite dot cis dot uoguelph dot ca. ok pedro@ tedu@
2006-04-02kill atoi(), correct signedness of internal API gettype(); ok a few peopleTheo de Raadt
2006-04-02Use SIZE_MAX instead of SIZE_T_MAX, the latter is not POSIX andOtto Moerbeek
remove redundant check on size. ok millert@ deraadt@
2006-04-02fix ^W (delete to start of word) in minibuffer;Kjell Wooding
i.e. actually kill text, don't just move the pointer.
2006-04-02Cope with FFS2's lazy inode allocation policy, adapted from FreeBSDPedro Martelletto
2006-04-02Set cg_ffs2_time whenever cg_time is setPedro Martelletto
2006-04-02In the cylinder groups, use part of the reserved space to sprinkle aPedro Martelletto
couple of new fields needed by FFS2, no functional change.
2006-04-02sessionid can be 32 bytes now too when sha256 kex is used; ok djm@Darren Tucker
2006-04-02clarify the Encore ENL832-TX model for the Realtek variant.Brad Smith
2006-04-02regenBrad Smith
2006-04-02add another PCI id to the ste(4) driver.Brad Smith
From the Sundance Linux driver.
2006-04-02clarify the Encore ENL832-TX model for the Realtek variant.Brad Smith
2006-04-02some extern and gooTheo de Raadt
2006-04-02oops, to64() is shared.Theo de Raadt
2006-04-02Enable DEBUG=-g -ggdb for rcs, move -g -ggdb out of CFLAGS for cvs.Ray Lai
Line up flags while I'm at it. OK to add DEBUG flags to rcs niallo@.
2006-04-02getting to the bottom of the issues. sprinkle a few casts that willTheo de Raadt
actually help us find bugs later (with lint, not cc), if they get introduced
2006-04-02be more careful checking for (off_t)-1 as the failure condition fromTheo de Raadt
lseek(), not just any old -1; ok millert
2006-04-02spacing;Joris Vink
2006-04-02be more alert for string truncation in cvs_initlog()Joris Vink
2006-04-02#ifdef lint not LINTTheo de Raadt
2006-04-02To be able to use the maximum number of IDE/SATA disks on an ICHJonathan Gray
system we have to make some channels native as there isn't enough legacy I/O space/interrupts to go around. Intel calls this enhanced mode. An updated and expanded version of a diff from Ulrik Holmén. "looks sane" grange@
2006-04-02#ifdef lint not LINTTheo de Raadt
2006-04-02a FALLTHROUGH and one size_t castTheo de Raadt
2006-04-02avoid lvalue cast by making local function be unsigned to begin withTheo de Raadt
2006-04-02use SEEK_* for lseek()Theo de Raadt
2006-04-02use SEEK_* for lseek()Theo de Raadt
2006-04-02use SEEK_* for lseek()Theo de Raadt
2006-04-02sprinkle a socklen_tTheo de Raadt
2006-04-01Do not attempt to print parameters which turned out to be dead; fixes PR#5066.Miod Vallat
2006-04-01Revert previous commit, this causes sti1 probe to hang on some models.Miod Vallat
2006-04-01minor lint cleaning; ok millertTheo de Raadt
2006-04-01Remove index entries for \n since nroff will try to expand this.Todd C. Miller
No one uses the index entries anyway...
2006-04-01Fix typo; E<GT> -> E<gt>. From jmc@Todd C. Miller
2006-04-01fix some bugs that lint discovered for us.Joris Vink
ok niallo@
2006-04-01when I initially hacked sensorsd, sensors started at hw.sensors.0 andHenning Brauer
there were no gaps ever. these days, we can have holes or start later. so on start scan 0..255 and do not abort if there's no entry, probe 'em all. found and analyzed by Sam Chill <samchill@gmail.com>, ok theo
2006-04-01Don't convert off_t to size_t without checking if it fits. From TobiasOtto Moerbeek
Stoeckmann.
2006-04-01Use NFILES for starting point instead of hardcoded constOtto Moerbeek
2006-04-01make lint happyTheo de Raadt
2006-04-01- Plug huge mem leak; mostly samba was suffering.Otto Moerbeek
- Fix semantics: seekdir(pos); telldir() shoud return pos. The code that implements this will be made faster in a later commit. - We loose documented behaviour (after closedir() the telldir() positions are not valid anymore). This was never in Posix, and most other systems have nothing like it. Diff originally from Paul Thorn, rewritten by me using some FreeBSD code. "slap it in" deraadt@
2006-04-01don't use mode_t with va_arg(), use int instead and cast it later toJoris Vink
mode_t. doing it the other way around isn't portable as mode_t may vary from int on some systems to short on others. noticed by deraadt@
2006-04-01use proper types and not fetch iobase that is not used later; damien okMichael Shalayeff
2006-04-01- plug a possible memory leak in checkin_update() error path.Niall O'Higgins
ok joris@
2006-04-01Don't do cylinder group block accounting for FFS2Pedro Martelletto
2006-04-01Mark FFS2 file systems with UM_UFS2Pedro Martelletto
2006-04-01Small fixes from form@:Alexander Yurchenko
- don't allow wildcard port locator - use GPIO_PIN_LOW instead of 0
2006-04-01Add rcs -l, rcs -u, and regression tests.Ray Lai
``put it all in'' joris@
2006-04-01Keep cvs flags in `flags', rcs flags in `rcsflags' in rcsprog.h.Ray Lai
Prevents bitfield pollution between the two. ``This is how it should be.'' niallo@
2006-04-01default LINTFLAGS add -p; from cloderTheo de Raadt
2006-04-01ANSIfy; requested deraadt@Damien Miller