Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-01-13 | Fix printf formats and add missing include. | Otto Moerbeek | |
ok mcbride@ deraadt@ | |||
2004-01-13 | cast for portability; millert@ | Markus Friedl | |
2004-01-13 | -Wall; ok henning | Markus Friedl | |
2004-01-13 | kill unused local vars; from deraadt@ | Michael Shalayeff | |
2004-01-13 | remove unnecessary Ic's; | Jason McIntyre | |
kill whitespace at EOL; ok djm@ | |||
2004-01-13 | Tidy sftp batchmode handling, eliminate junk to stderr (bugzilla #754) and | Damien Miller | |
enable use of "-b -" to accept batchfile from stdin; ok markus@ | |||
2004-01-13 | Missing cast. From deraadt@ | Otto Moerbeek | |
2004-01-13 | Add missing include. From espie@ | Otto Moerbeek | |
2004-01-13 | use our own nm and size | Michael Shalayeff | |
2004-01-12 | request modeline redrawing to see mail-mode appear as soon as the mode | Vincent Labrecque | |
is turned on | |||
2004-01-12 | Use closefrom() if it exists; from the sudo cvs repo | Todd C. Miller | |
2004-01-12 | Install vi.ref in /usr/share/doc/usd (directories already exist for it). | Todd C. Miller | |
OK jmc@ | |||
2004-01-12 | There is no typewriter font in nroff so just use the roman font instead. | Todd C. Miller | |
Fixes bizarre font problems formatting vi.ref via nroff. OK jmc@ | |||
2004-01-12 | Use a 5n margin on the right & left sides so the text version formats nicely. | Todd C. Miller | |
OK jmc@ | |||
2004-01-12 | Pass groff the -U flag so that building the index works. OK jmc@ | Todd C. Miller | |
2004-01-12 | fix string mishandling of lpath, ok millert, deraadt | Bob Beck | |
2004-01-11 | for pty opening, only use the openpty() path. the other stuff only needs | Theo de Raadt | |
to be in openssh-p; markus ok | |||
2004-01-09 | use cc -E for the preprocessor instead of cpp. | Brad Smith | |
ok espie@ millert@ | |||
2004-01-08 | Convert to kvm_getproc2(); ok deraadt@ | Todd C. Miller | |
2004-01-08 | Pass the right type based on the conversion specified; warn on conversion | Otto Moerbeek | |
errors. Mostly from FreeBSD. | |||
2004-01-08 | Silence warning | Todd C. Miller | |
2004-01-08 | Convert to kinfo_proc2; ok deraadt@ | Todd C. Miller | |
2004-01-08 | Fix uninitialized variable. From Ilya Voronin <ivoronin at trancom dot ru> | Otto Moerbeek | |
2004-01-07 | Proper use of uid_t and did_t types instead of a generic int. | Thierry Deval | |
Lovingly baited by deraadt@. Ok himself, otto@ | |||
2004-01-07 | Correctly test for cases where one file is different, and the other has | Can Erkin Acar | |
no more changes. ok millert@ | |||
2004-01-07 | Document -p option. ok jmc@ | Otto Moerbeek | |
2004-01-07 | Implement -p option. | Otto Moerbeek | |
"works here" millert@ ok miod@ deraadt@ | |||
2004-01-07 | corrections to SET OPTIONS; | Jason McIntyre | |
2004-01-07 | s/environmental/environment/; | Jason McIntyre | |
2004-01-07 | corrections to the EX COMMANDS section; | Jason McIntyre | |
2004-01-07 | Convert back to using kvm_getproc2() and friends now that libkvm | Todd C. Miller | |
supports it. | |||
2004-01-06 | We don't have signal(7) | Todd C. Miller | |
2004-01-06 | pkill/pgrep from NetBSD with changes to use kvm_getprocs(). Selecting | Todd C. Miller | |
on session ID does not current work but that will change once the kernel supports the KERN_PROC2 sysctl and pkill/pgrep is modified to use kvm_getproc2(). OK deraadt@ | |||
2004-01-06 | import netbsd's version of David Borman's syncache code | Markus Friedl | |
http://www.kohala.com/start/borman.97jun06.txt; ok deraadt@, henning@ | |||
2004-01-06 | man tweaks; | Jason McIntyre | |
2004-01-06 | protect output from %union from being anonymous using cpp guarding, for | Theo de Raadt | |
the case where the yacc output .c file pulls in the yacc output -h file; espie ok | |||
2004-01-05 | include path fixes for gcc3. | Marc Espie | |
tests otto@, okay millert@ | |||
2004-01-05 | nm digs elf and merges w/ size; millert@ ok | Michael Shalayeff | |
2004-01-05 | Get rid of volatile variables that were a vain attempt to prevent the | Todd C. Miller | |
compiler from optimizing away memset() calls. Instead, add a new function, zero_bytes(), to clear buffers with sensitive contents. Taken from the sudo cvs repo, man. | |||
2004-01-03 | missing proto; ok hin | Peter Valchev | |
2004-01-03 | Silence a gcc warning: "initialization from incompatible pointer type" | Todd C. Miller | |
The problem is that while ANSI C allows initialization of unions, the initializer must be valid for the first member of the union. Therefore, add a cast to quiet the compiler. Noticed and Ok pvalchev@ | |||
2004-01-03 | Fix format type mismatch (int vs. ssize_t). | Todd C. Miller | |
2004-01-03 | as if we didn't know... | Henning Brauer | |
2004-01-02 | some corrections/improvements to the VI COMMANDS section; | Jason McIntyre | |
2004-01-02 | new year was around spring equinox and not on winter solstice and thus ↵ | Michael Shalayeff | |
rearrange it properly | |||
2004-01-02 | point people to re_format(7) for a description of basic regular | Jason McIntyre | |
expressions, rather than regex(3); from Greg A. Woods; | |||
2004-01-02 | use standard section ENVIRONMENT, rather than ENVIRONMENT VARIABLES; | Jason McIntyre | |
from deraadt@ | |||
2004-01-01 | Explain how jot does rounding and truncation. Help from jmc@ | Otto Moerbeek | |
ok jmc@ millert@ deraadt@ | |||
2003-12-31 | fix -r description now that millert has fixed the code; | Jason McIntyre | |
2003-12-31 | Both POSIX and the man page says that "vi -r foo" is run where foo does not | Todd C. Miller | |
exist and has no recovery file that vi shall present an error and edit foo as a new file. This change makes the behavior match the documentation; previously it just spat out an error and quit. Problem found by jmc@ |