Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-05-12 | Fix a bug where pkg_add would fail when dependencies got a few levels deep | Peter Valchev | |
in the recursive install by removing the code which looks under All/ for more packages as this is not used on OpenBSD From Barry Scott <bscott@ridgewaysystems.com> | |||
2003-05-12 | sprintf -> snprintf. ok krw@ deraadt@ | Ted Unangst | |
2003-05-12 | Update with some data for NAT-T specific payload types, IKEv2 | Hakan Olsson | |
notifications, ISAKMP EAP code and types, plus fix an old typo. | |||
2003-05-12 | fix up locking and some issues with union. derived from netbsd | Ted Unangst | |
2003-05-12 | AES -> AES_128_CBC | Hakan Olsson | |
2003-05-12 | Add two more encapsulation types (UDP encap, potential future NAT-T) | Hakan Olsson | |
Add BLOCK_SIZE attribute Rename IPSEC_ESP_AES -> IPSEC_ESP_AES_128_CBC. | |||
2003-05-12 | add s_strl{cat,cpy} prototypes; ok tedu@ | Jason Peel | |
2003-05-12 | new files for layer fs if nullfs | umapfs | Ted Unangst | |
2003-05-12 | {null,umap}_v* are now named after the file system option: | Ted Unangst | |
{nullfs,umapfs}_v* | |||
2003-05-12 | replaced by layer_subr.c | Ted Unangst | |
2003-05-12 | umapfs uses the new layer stuff now too. | Ted Unangst | |
2003-05-12 | most of the fixes for nullfs. use the new common layer stuff in genfs. | Ted Unangst | |
2003-05-12 | new files to support layered file systems. to be used in a bit. | Ted Unangst | |
mostly from work by Bill Studenmund - wrstuden at netbsd | |||
2003-05-12 | s_strn{cpy,cat} are no longer used; remove them. also, kill NOTUSED. | Jason Peel | |
ok tedu@ | |||
2003-05-12 | Do vis()-cleaning when displaying the print queue. | Paul Janzen | |
ok deraadt@, ian@ | |||
2003-05-12 | strstr() prototype shouldn't be here; kill NOTUSED and an extra newline; | Jason Peel | |
ok tdeval@, tedu@ | |||
2003-05-12 | merge in NetBSD diffs: | Paul Janzen | |
- understand // comments - ignore 'int (*f)();' - accept the GNU __attribute__ keyword. deraadt@ ok | |||
2003-05-12 | feof() can only be used after you actually hit EOF so the check | Todd C. Miller | |
for no output from the at command was busted. Instead of using feof(), just fread() a buffer's worth and check to see if we got anything back. Closes PR 3252. | |||
2003-05-12 | use new display types; ok miod | Jason Wright | |
2003-05-12 | talk about show proc | Michael Shalayeff | |
2003-05-12 | sho proc [addr] to print some proc's field; art@ ok | Michael Shalayeff | |
2003-05-12 | use new display types | Jason Wright | |
2003-05-12 | Sync to 0.6.2 | Camiel Dobbelaar | |
- UIDL digest calculation has been improved - minor bug fixes - -V switch to show version | |||
2003-05-12 | More cleanup and fixes in url installs. | Kenneth R Westerback | |
1) Filter appropriate lines (ftp or http) from ftplist once when it is downloaded rather than everytime the lines are needed. 2) Don't display the 'ftp://' or 'http://' part of the listed url's as all displayed url's are of the same type. Partially compensates for the last increase in the width of the 'cat -n' line number field. 3) Store filtered lines in /tmp/serverlist instead of /tmp/ftplist, since it can be a list of http servers too. Makes it more obvious that it is not a copy of ftplist. 4) Avoid 'ftplist: No such file' message, but add more informative 'Getting...done.' or 'Getting...FAILED.' message. Display the actual ftp error that caused the FAILED status. 5) Add 'done' to the list of available options when asking for a server location, allowing the user to return to set location selection without having to enter a server. 6) Mention the '?' option in the prompt. It re-displays the list of servers. 7) Eliminate unneeded variables 'host' and 'maxlines'. Make global tline a local (_line). Change _ftp_get_list global to more generic _get_server_list. 8) General logic cleanup. | |||
2003-05-12 | Initial work to bring this driver in par with other sparc frame buffers: | Miod Vallat | |
- do not reprogram the colormap to black and white, after programming the rasops one (oops). This gives us back a black on white display with colour support. - if the screen resolution would cause the switch from the prom font to a reasonably sized wsfont to leave text in the margins, clear the screen (cut and paste from similar code in vigra.c) - try and use more symbolic constants rather than magical values all over the place. Thanks to millert@ for bringing a sparcbook here. | |||
2003-05-12 | strlcpy; tedu ok | Theo de Raadt | |
2003-05-12 | typo: DSA keys are of type ssh-dss; Brian Poole | Markus Friedl | |
2003-05-12 | Fix 'eval' statement in _url_base construction so that we use the | Kenneth R Westerback | |
contents of ftp_server_dir or http_server_dir, and not their names. ftp and http installs now work again. | |||
2003-05-12 | Reorder IPv6 address comparisons to check the least significant parts | Ryan Thomas McBride | |
first. The least significant portions of the IPv6 address are more likely to differ than the more significant ones, since in most situations half the addresses (either the source or the destination) will be in the local subnet. ok dhartmei@ henning@ | |||
2003-05-12 | Correctness nit. Initialise state search trees properly. | Ryan Thomas McBride | |
ok henning@ frantzen@ | |||
2003-05-12 | cut crap, use strdup instead of malloc + strlcpy, use err() | Henning Brauer | |
2003-05-12 | extend copyright to 2003 | Henning Brauer | |
2003-05-12 | no point in strncmp here; seen after question from | Henning Brauer | |
Pedro Bastos <pbastos@rdc.puc-rio.br> | |||
2003-05-12 | explicit != NULL for pointer | Henning Brauer | |
2003-05-12 | These files are not use by us, so they're removed to make the tree | Hans Insulander | |
a little bit leaner, and to get rid of some bad string functions. | |||
2003-05-12 | warn on right symbols, oops | Theo de Raadt | |
2003-05-12 | for pubkey authentication try the user keys in the following order: | Markus Friedl | |
1. agent keys that are found in the config file 2. other agent keys 3. keys that are only listed in the config file this helps when an agent has many keys, where the server might close the connection before the correct key is used. report & ok pb@ | |||
2003-05-12 | Disable krb4 support in preparation for krb4 removal. | Magnus Holmberg | |
ok jakob@, hin@ | |||
2003-05-12 | cpu -> CPU | Jason McIntyre | |
2003-05-12 | cpu -> CPU | Jason McIntyre | |
2003-05-12 | cpu -> CPU | Jason McIntyre | |
2003-05-12 | cpu -> CPU | Jason McIntyre | |
2003-05-12 | cpu -> CPU | Jason McIntyre | |
2003-05-12 | typo (mine) from Martin Reindl; | Jason McIntyre | |
2003-05-12 | typos; | Jason McIntyre | |
diffs passed on to curses people. | |||
2003-05-12 | sync man page with marcus's recent upgrade; | Jason McIntyre | |
little cleanup as well. | |||
2003-05-12 | Fix merge error. | Magnus Holmberg | |
ok hin@ | |||
2003-05-12 | NetBSD: remove redundant decl | Paul Janzen | |
2003-05-12 | Enable Intrepid's mac-io match. | Thierry Deval | |
Ok drahn@ | |||
2003-05-12 | From NetBSD: don't need to declare ospeed. | Paul Janzen | |