ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/src/trunk
r1911
File Last Change
 ../
bin/ 1751 (15 years ago) by laffer1: Add mined.
contrib/ 1869 (15 years ago) by laffer1: Update the directions to go with the version
crypto/ 1649 (15 years ago) by archite: Fixing path for X11 binary files in order to allow ssh-add to find the askpass utility.
etc/ 1908 (15 years ago) by laffer1: Add default rules for ntpd and avahi (ipv4)
games/ 1153 (16 years ago) by laffer1: Forced commit to add: The changes in the randomize_fd.c are pretty simple: Basically in the older algorithm you had to walk thru the whole list element-by-element in order to reach an specific line and print it. This process is rather slow in big lists (big files :)), since it had to go all the way from the head of the list until it reached the element it randomly selected. The new algorithm only changes the way we access the elements, basically after the whole file is loaded up into the linked-list, we create an array of pointers to rand_node pointers, basically we walk over the whole list once (after the whole file is loaded into the list) and map each address into an array position (in the same order they were inserted on the list), after that whenever a random number is selected, we dont need to walk the whole list until we reach it, we simply rand_node_table[selected] it and get it in one move. If the unique option is used, after a rand_node_table[selected] gets visited we set it to NULL and if we reach that same slot afterwards, we simply go back and randomly select another number. Pretty simple. victor loureiro lima
gnu/ 1764 (15 years ago) by laffer1: Increase max length
include/ 1901 (15 years ago) by laffer1: sync changes with freebsd.
kerberos5/ 6 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r5, which included commits to RCS files with non-trunk default branches.
lib/ 1911 (15 years ago) by laffer1: * Change default shared lib version. * Fix comment for ncurses.
libexec/ 1865 (15 years ago) by laffer1: Don't split large commands into multiple commands on a 512-byte boundary but just fail on them. This prevents CSRF-like attacks, when a web browser is used to access an ftp server. Reported to OpenBSD by Maksymilian Arciemowicz <cxib@securityreason.com> Also includes a command "500 Command too long" as part of a revised patch by Luk e Mewburn. http://web.nvd.nist.gov/view/vuln/detail;jsessionid=df97c3e18c5c787b6c316f886ad5 ?execution=e1s1 CVE-2008-4247
nrelease/ 1817 (15 years ago) by laffer1: Add iso2img script. Allows you to convert an install ISO to a flash friendly image. This is under the beerware license.
release/ 1793 (15 years ago) by laffer1: Switch to 3 disc iso setup like 0.2.1
rescue/ 1216 (16 years ago) by laffer1: Add chown to rescue. It could be very handy. Remove alpha bits.
sbin/ 1466 (16 years ago) by laffer1: Don't leak memory #2
secure/ 1594 (15 years ago) by laffer1: Add ssh-vulnkey.
share/ 1859 (15 years ago) by laffer1: set visual to vi for now. We don't have emacs built in
sys/ 1907 (15 years ago) by laffer1: *** empty log message ***
tools/ 1872 (15 years ago) by laffer1: We removed prstats and portsinfo, remove the documentation
usr.bin/ 1866 (15 years ago) by laffer1: Sync make with freebsd $MidnightBSD$ <limits.h> is necessary for using INT_MIN, so included it here explicitly rather than relying on name space pollution to pull it in for us. No need to tell make to DTRT with "make love", just do it. Also remove the 2002/08/31 bootstrapping aid for upgrades from year old (mid-2001) systems. Fix splitting into words of the .for expression to allow for spaces in values. Without this change, the following valid call broke due to parsing of .MAKEFLAGS in bsd.symver.mk: cd /usr/src/lib/libc && make -n DEBUG_FLAGS="-DFOO -DBAR" If the special target .MAKEFILEDEPS exists, then enable the "remaking makefiles" feature. Otherwise, follow traditional Pmake behavior.
usr.sbin/ 1890 (15 years ago) by laffer1: $MidnightBSD$
COPYRIGHT 1704 (15 years ago) by laffer1: Use correct date syntax for copyrights. I'm not certain on the legality of using the project name there. I've heard mixed things. We'll stick with this until we can find out.
MAINTAINERS 1753 (15 years ago) by laffer1: remove the freebsd develpers from the maintainer list. We're on our own. We should adjust the various src tree MAINTAINER areas eventually.
Makefile 686 (17 years ago) by laffer1: Oops.. typo
Makefile.inc1 1551 (16 years ago) by laffer1: Fix the dreaded libpthread.a is missing crap with bind. libthr and libpthread are both built now (so sparc64 and i386/amd64 work). Remove pcvt reference since I deleted that last night. Remove some directories that we don't need to go through to speed up the build.
ObsoleteFiles.inc 1288 (16 years ago) by laffer1: Remove early.sh
README 170 (17 years ago) by laffer1: Remove $FreeBSD$
UPDATING 1809 (15 years ago) by laffer1: Update nve(4) to support newer hardware.
20 directories and 7 files shown