Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-29 | use correct length when making a copy of environ | Todd C. Miller | |
2007-07-29 | sync the command usage with its synopsis | Igor Sobrado | |
ok jmc@ | |||
2007-07-29 | reindent, no code change | Marc Espie | |
2007-07-29 | zap redundant code; ok deanna@ | Constantine A. Murenin | |
2007-07-27 | size_t vs ssize_t error; spotted by zinovik@cs.karelia.ru | Theo de Raadt | |
2007-07-27 | u_endscreen()'s argument is entirely unused; inspired by zinovik@cs.karelia.ru | Theo de Raadt | |
2007-07-27 | replace a few more malloc(n*m) idioms with calloc(n,m) for safety; | Theo de Raadt | |
inspired by zinovik@cs.karelia.ru | |||
2007-07-27 | getpriority() and setpriority() are documented in the same page, so only | Jason McIntyre | |
list one of them as a reference in SEE ALSO; | |||
2007-07-26 | make FILES section entries line up | Todd C. Miller | |
2007-07-26 | Remove the space after "Password:" in password prompts where echo is | Todd C. Miller | |
turned off. This is consistent with historic UNIX behavior. | |||
2007-07-26 | Add the correct file descriptor to rdfd when cycling through | Todd C. Miller | |
the list of scripting windows. Appears to be a cut and paste error. OK deraadt@ | |||
2007-07-26 | Update to sudo 1.6.9p1. Note that the environment handling in sudo | Todd C. Miller | |
1.6.9 has changed relative to older versions. Sudo now starts commands with a minimal environment containing the variables in the env_keep and env_check lists. This behavior is configurable in the sudoers file. Please see the "SECURITY NOTES" section in the sudo manual. | |||
2007-07-25 | Update synopsis. with help by jmc@ | Claudio Jeker | |
2007-07-25 | Make it possible to show alternate routing tables in netstat. This mostly | Claudio Jeker | |
comes from route(8) which already had the -T option. OK henning@ | |||
2007-07-25 | Correctly handle the export command when writing to history file. | Xavier Santolaria | |
2007-07-24 | reindent, no binary change | Marc Espie | |
2007-07-24 | same uninit variable bug as in elf_syms.c | Theo de Raadt | |
2007-07-24 | reindent (no binary change) | Marc Espie | |
2007-07-24 | uninit variable causing crash; veins@evilkittens.org | Theo de Raadt | |
2007-07-24 | Bring back a few things from route/show.c which I like better. | Claudio Jeker | |
2007-07-24 | reformat to 8 chars tab, zap unneeded comment (no binary change) | Marc Espie | |
2007-07-24 | zap unused variable | Marc Espie | |
2007-07-24 | simplify computations in the var module: instead of advancing a char * | Marc Espie | |
and keeping track of a length, we just advance the char *, and ditch the length. We can still get the length at the end of the top-level functions to satisfy existing interfaces. Much simpler code, less error-prone. Okay millert@ | |||
2007-07-24 | move the code that grabs a value in Var_Parse in its own function, | Marc Espie | |
get_expanded_value. Extend the code a bit to be much more thorough in case of a recursive expansion: shows exactly the cycle of variable names involved. okay millert@ | |||
2007-07-24 | change Var_ParseSkip API to increment the position instead of returning a | Marc Espie | |
length, simplifies code. (warns a bit, symptom of some further issues to fix). okay millert@ | |||
2007-07-22 | lexicographically sorts the list of commands | Igor Sobrado | |
ok jmc@ | |||
2007-07-22 | make sure loop variables use their own buffers. | Marc Espie | |
(causes .for loops to give weird results very infrequently, memory handling was slightly wrong, but not enough to break things thoroughly). noticed by naddy@ | |||
2007-07-21 | Similar to sbin/route/show.c: | Claudio Jeker | |
Check the rtm_version before trying to print an entry. If the rtmsg has a different version skip it and don't try to print it. Solves a SIGSEGV I have triggered with one of my scarier diffs. OK henning@ | |||
2007-07-21 | even though gcc doesn't reuse the utsname space, it could. Ensure MACHINE | Marc Espie | |
stays defined. | |||
2007-07-21 | zap unneeded stuff | Marc Espie | |
2007-07-20 | big clean-up patch: | Marc Espie | |
- rename a few functions in var.c to names that make more sense. - introduce Var_Deletei because it makes more sense. - rewrite .for loops to use a local LoopVar construct to avoid looking up more stuff. - reformat var.c to near K&R - rewrite most comments in var.c shown to a few people. millert@ gave me his okay since it passes through ports correctly. | |||
2007-07-20 | reorder stuff in var.c so that the next patch is more readable. | Marc Espie | |
2007-07-20 | - document the "play" default a little more clearly | Jason McIntyre | |
- document the difference between "play" and "cdplay" more clearly ok mjc | |||
2007-07-19 | Sync with cvs: | Ray Lai | |
> xcalloc is unneeded here since i is always 0 and we always use the > memory after initializing it. > > Initial diff from Igor Zinovik. > > OK niallo and xsa. | |||
2007-07-19 | xcalloc is unneeded here since i is always 0 and we always use the | Ray Lai | |
memory after initializing it. Initial diff from Igor Zinovik. OK niallo and xsa. | |||
2007-07-18 | Support -r for the export command. | Xavier Santolaria | |
2007-07-17 | Forgot this part about rlog not needing the Directory request to be sent. | Xavier Santolaria | |
2007-07-17 | Correct function name in error string. | Xavier Santolaria | |
2007-07-17 | Simplify the way we check wether the issued command is `log' or `rlog'. | Xavier Santolaria | |
Input and OK ray@. | |||
2007-07-17 | Do not send the Directory request when using the rlog command. | Xavier Santolaria | |
OK joris@. | |||
2007-07-17 | comment snicky usage of strchr | Marc Espie | |
2007-07-16 | oops, missed a bit from tobias' diff - add "usage: " to usage(); | Jason McIntyre | |
from Tobias Stoeckmann | |||
2007-07-16 | sync usage(); from Tobias Stoeckmann | Jason McIntyre | |
2007-07-16 | fix percentage computation of wrapping numbers; from Willem Dijkstra | Otto Moerbeek | |
via henning@ with a twist by me | |||
2007-07-16 | Do not display the `Working file:' line if the issued command is `rlog'. | Xavier Santolaria | |
Matches GNU's behaviour. OK joris@. | |||
2007-07-14 | Don't trim whitespace from stdin. Encrypt it the same as other | Kenneth R Westerback | |
input sources. Feedback and fixes from ray@ and fgsch@. ok millert@ (six years ago) ray@ fgsch@ | |||
2007-07-12 | Do not fatal() if the CVSROOT/config file does not exist. | Xavier Santolaria | |
Matches GNU's behaviour. OK ray@. | |||
2007-07-12 | Delint: remove some unreachable statements, from Bret Lambert. | Ray Lai | |
OK markus@ and dtucker@. | |||
2007-07-09 | espie, you have got to be joking | Theo de Raadt | |
2007-07-09 | Fix possible heap overflow in file(1), aka CVE-2007-1536. | Dimitry Andric | |
When writing data into a buffer in the file_printf() function, the length of the unused portion of the buffer is not correctly tracked, resulting in a buffer overflow when processing certain files. Adapted from FreeBSD's SA-07:04.file fix, with ok and some minor tweaks from canacar@ and ray@. |