Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-15 | Don't print the error strings returned by readdisklabel(). If you | Kenneth R Westerback | |
need the debug info uncomment the printf's you need. Crude but effective way to suppress 'no disklabel' errors that pop up at the most innconvenient times to frighten users. More elegant method, DPRINTF-like constructs or something, later. "Yay!" marco@ ok deraadt@ | |||
2007-02-14 | put the disknames command on all install media (hope i did not miss any) ok krw@ | Theo de Raadt | |
2007-02-14 | Use new 'disknames' command to get names of disks and cds. | Kenneth R Westerback | |
ok deraadt@ | |||
2007-02-14 | spacing and a typo that fell out of the read | Theo de Raadt | |
2007-02-14 | use errwarn functions vs. syslog(); ok henning@ krw@ | Kevin Steves | |
2007-02-14 | /* not $*. | Kenneth R Westerback | |
2007-02-14 | Oops. Add $OpenBSD$ (pointed out by jasper@) and license (pointed out | Kenneth R Westerback | |
by deraadt@). | |||
2007-02-14 | do not whack CFLAGS | Theo de Raadt | |
2007-02-14 | append \n at end of line, and make this more normal userland code | Theo de Raadt | |
2007-02-14 | Hack a small program to return hw.disknames so that install scripts | Kenneth R Westerback | |
are not dependant on a clean dmesg to scan for disks and cds. "Looks good, seems right" art@ "commit" deraadt@ | |||
2007-02-14 | Cleanup and hide debug messages. | Mark Kettenis | |
2007-02-14 | Sync with pgt(4) multicast fix. | Marcus Glocker | |
OK claudio@ | |||
2007-02-14 | g/c NO_DL_NEEDED, it is no longer used by os/unix/os.c | Todd C. Miller | |
2007-02-14 | Add SIOCADDMULTI and SIOCDELMULTI ioctl handlers. Without them IPv6 does | Claudio Jeker | |
not work. Issue reported by brad@ OK mglocker@ | |||
2007-02-14 | remove GNU RCS implementation from the tree. Open RCS has been used for over | Niall O'Higgins | |
a release now. prompted by deraadt@, ok joris@ | |||
2007-02-14 | correct a mistake concerning ifa_data; | Jason McIntyre | |
found by Srebrenko Sehic, corrected by millert and claudio; | |||
2007-02-14 | recycle swbuf that had been long gone (w/ old vm) | Michael Shalayeff | |
(this is in preparation for approaching GBC work) | |||
2007-02-14 | sync some manual page entries with actual usage. | Niall O'Higgins | |
ok jmc@, xsa@ mostly From: Igor Sobrado <igor at string1.ciencias.uniovi.es> | |||
2007-02-14 | typos in comments; ok jmc@ | Kevin Steves | |
2007-02-14 | remove size_t and int mixup. same as getaddrinfo.c 1.30 -> 1.31. | Jun-ichiro itojun Hagino | |
2007-02-14 | more refinements for the interactive commands section; ok otto | Jason McIntyre | |
2007-02-14 | Fix spacing in Makefile. | Niall O'Higgins | |
ok joris@ From: Igor Sobrado <igor at string1.ciencias.uniovi.es> | |||
2007-02-14 | Remove int pretending to be a size_t. | Ray Lai | |
OK millert@. | |||
2007-02-14 | remove some unused goop | Jonathan Gray | |
2007-02-14 | put debug string tables under ATW_DEBUG | Jonathan Gray | |
2007-02-14 | remove no longer used rate related variable/defines | Jonathan Gray | |
2007-02-14 | %b format string for the GHC register. less whitespace while here | David Gwynne | |
2007-02-14 | sync the rest (atomic.h) | Peter Valchev | |
2007-02-14 | Quiet a noisy debug message by using dnprintf instead of printf. | Deanna Phillips | |
ok marco | |||
2007-02-14 | Fix some realloc() off-by-one errors found by ray@. | Todd C. Miller | |
Also simplify fix_quoted_colons() to avoid realloc entirely since the output buffer is at most 2x the length of the input buffer. Parts adapted from a diff from tdeval@. OK ray@, beck@ | |||
2007-02-14 | FALLTHRU -> FALLTHROUGH for consistency. | Jonathan Gray | |
Suggested by miod@ | |||
2007-02-14 | Consistently spell FALLTHROUGH to appease lint. | Jonathan Gray | |
ok kettenis@ cloder@ tom@ henning@ | |||
2007-02-14 | bus_space does byte swapping to cope with host endianness for us, so remove | David Gwynne | |
an unnecessary htole32(). | |||
2007-02-13 | move includes only needed in dhclient.c; ok henning@ | Kevin Steves | |
2007-02-13 | - Be explicit on command line checking, instead of relying on patterns, | Matthias Kilian | |
which may be NULL (e.g. -e ''). - let add_pattern() decide how to deal with empty patterns, don't do magic in read_patterns(). This unbreaks stuff like grep -e '', and makes grep -f <file> more POSIX compliant. Semantics for grep -f /dev/null (or any other empty file) may be questionable, but this case isn't specified by POSIX, and matching nothing at all seems to be sane. Thanks to otto@, who mentioned potential problems related to the -x option with the first patch i sent. ok jaredy@ (some time ago), otto@, millert@ | |||
2007-02-13 | Add a delay for ep0 handling. Dunno why, but without debug prints it would | Dale Rahn | |
not attach properly until a delay was added. Also some debug quieting. | |||
2007-02-13 | "Fix" a horrible signal handler. ckfini() breaks all the rules for | Otto Moerbeek | |
signal handlers, calling free() and not being reentrant. This commit fixes to most importamt problem (^C on the "MARK FILESYSTEM CLEAN?" question causes a double free), but actually SIGINT handling should be completely rewritten. ok millert@ deraadt@ | |||
2007-02-13 | Avoid double recacl when loop_once is used. | Todd C. Miller | |
From libevent SVN via brad@. | |||
2007-02-13 | Fix typo. Spotted by brad@. | Mark Kettenis | |
2007-02-13 | Add prototype for bufferevent_base_set(). | Todd C. Miller | |
From the libevent SVN repo, by Thorsten Glaser via brad@ | |||
2007-02-13 | Remove a.out nlist support (COFF nlist is kept in case kernel has COMPAT_OSF1) | Miod Vallat | |
2007-02-13 | Regen | Miod Vallat | |
2007-02-13 | Create the /dev/lcd node; ok aoyama@ | Miod Vallat | |
2007-02-13 | unbreak compile on 64bit systems; no cookie for espie. ok millert | Henning Brauer | |
2007-02-13 | crontab -e /tmp//crontab.ynUyD24939 versus /tmp/crontab.ynUyD24939. | Marcus Glocker | |
OK millert@ | |||
2007-02-13 | Fix typo in comment | Tom Cosgrove | |
2007-02-13 | USB client mode with cdce function driver is coming along, RX and TX kinda work. | Dale Rahn | |
Limitations include failing to recieve packets that are a multiple of 64 bytes and sending packets longer than 128 bytes appears to be messed up. Work in progress. | |||
2007-02-13 | It's not M1394CTL and M1394DATA. It's M_1394CTL and M_1394DATA. | Michael Knudsen | |
ok brad | |||
2007-02-13 | Fix a problem with wrapped incremental searches. | Kjell Wooding | |
Basically, on wrap, the line pointer and offset would get out of sync, leading to incorrect line numbers or a segfault. Deanna Phillips did all the work of spotting it tracking it down to the right function. Thanks! While here, add emacs-like messages for wrapped and failed incremental searches. Tested by Deanna. | |||
2007-02-13 | fix ddb buf print | Michael Shalayeff | |