Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-09-30 | Fix a problem in the last commit. Upon closer reading of POSIX, in | Todd C. Miller | |
-p mode we only want to change the mode on directories we actually created. | |||
2008-09-30 | Properly count memory on machines where Open Firmware reports zero sized | Mark Kettenis | |
entries in between filled banks. ok drahn@ | |||
2008-09-30 | Properly display files with embedded colons being xferred via ftd. | Todd C. Miller | |
Closes PR 5119. OK miod@ | |||
2008-09-30 | Fix various pmap_extract() buglets: | Miod Vallat | |
- for kernel space addresses, check the page number fits in Sysmap before accessing the array. - for user space addresses, return the right (in-page) address bits. | |||
2008-09-30 | Do not perform cache operations in vmapbuf(), pmap is supposed to do them | Miod Vallat | |
for us if needed. ok art@ kettenis@ | |||
2008-09-30 | style nits. | Brad Smith | |
2008-09-30 | fix ugly comments. | Pierre-Yves Ritschard | |
2008-09-30 | add missing copyright. | Pierre-Yves Ritschard | |
2008-09-30 | aldap library -- Replacement for openldap used in ypldap. aldap is an ↵ | aschrijver | |
semi-asynchronous client interface to connect to LDAP servers. | |||
2008-09-30 | Always say "User %s access denied", in all cases, to avoid some stupid | Theo de Raadt | |
spinny things which parse those messages. Do not close the connection as requested by Josh Grosse, since a 530 is not supposed to do that. ok millert | |||
2008-09-30 | Fix "-m mode" in conjunction with the -p flag. Also simplify the error | Todd C. Miller | |
handling. Closes PR 5908. OK deraadt@ | |||
2008-09-30 | sync | Theo de Raadt | |
2008-09-30 | Fix an occasional mfs-related panic on reboot in mfs_close. There's no | Todd C. Miller | |
need to check v_usecount, the buffer queue check is sufficient. From mickey. OK deraadt@ | |||
2008-09-30 | from mainline lynx; passed to us by bulibuta@sdf.lonestar.org | Theo de Raadt | |
2008-04-27 (2.8.7dev.9) * pass a newline after the start of PRE-section in HTGopher.c to force the first newline between records to be seen and cause the lines to split (report by Ciprian Dorin Craciun) -TD | |||
2008-09-30 | Add back a change that got lost in the final merge. | Todd C. Miller | |
We cannot mkdep DynaLoader.c since it is a generated file. | |||
2008-09-30 | compress powersleep commands into one; ok damien | Theo de Raadt | |
2008-09-30 | Remove a couple more bogus man pages and add missing MLINKs. The | Todd C. Miller | |
makewhatis info for the perl man pages now matches the pages themselves. | |||
2008-09-30 | simplify and rework the mechanism to run the leds, 'it is better' miod@ deraadt@ | Dale Rahn | |
2008-09-30 | straighten the deck chairs slightly | David Gwynne | |
2008-09-30 | install hostname.* files mode 640 root.wheel by default; ok krw | Theo de Raadt | |
2008-09-29 | sync | Theo de Raadt | |
2008-09-29 | sync | Theo de Raadt | |
2008-09-29 | Put back the ``address'' field to struct drm_buf, this allows machdrm to | Owain Ainsworth | |
actually compile again (no one's tested it yet, still and I don't have one). | |||
2008-09-29 | Fix mmap to always return the right value in the error path. While i'm | Owain Ainsworth | |
here rework it a little bit to remove a shadowed variable. | |||
2008-09-29 | jme(4) works on sparc64; ok jsg | Theo de Raadt | |
2008-09-29 | always need the vlan includes; ok jsg | Theo de Raadt | |
2008-09-29 | Remove bogus man pages and fix the NAME lines for many more. | Todd C. Miller | |
2008-09-29 | document new support for I-O DATA PCET/TX-R | Theo de Raadt | |
2008-09-29 | sync | Theo de Raadt | |
2008-09-29 | Support another ne(4) at pcmcia(4), pr5940 from Kamo Hiroyasu | Theo de Raadt | |
2008-09-29 | initialize both sides of the lockpipe (only used in debug mode) to -1 to | Theo de Raadt | |
have averted the bug found in pr 5938 | |||
2008-09-29 | do not close a random file descriptor in debug mode, PR 5938 from mickey | Theo de Raadt | |
2008-09-29 | back out previous commit, since it is breaking a variety of machines | Theo de Raadt | |
(Supermicro X5DLR, and seperately, see pr 5941) | |||
2008-09-29 | Add a missing `|' to the description of -perm. | Matthias Kilian | |
ok jmc@ | |||
2008-09-29 | add prototype for Carp::croak to prevent error under perl 5.10 | Simon Bertrang | |
feedback by espie@, prodded by millert@ | |||
2008-09-29 | fix conflicts and merge in local changes to perl 5.10.0 | Todd C. Miller | |
2008-09-29 | import perl 5.10.0 from CPAN | Todd C. Miller | |
2008-09-29 | more updates on which args do and do not mix (doc only, this time): | Jason McIntyre | |
- list -f in the -cStu "exclusive group" (we already document that -f overrides these options) - note that our implementation of -f differs from posix - -k and -u do not override each other: those options are not used together ok sobrado | |||
2008-09-29 | fix log option with filter rules | Reyk Floeter | |
2008-09-29 | also log the label if available for the matching rule node (like the | Reyk Floeter | |
URL filter category etc.) | |||
2008-09-29 | spacing | Reyk Floeter | |
2008-09-29 | Change parsing of comments in external rule files. The hash mark may | Reyk Floeter | |
appear in URLs (eg. /index.html#anchor), so only allow full-line comments indicated by a hash mark # at the beginning of a line. | |||
2008-09-29 | allow to load expect, filter, log, and remove keys from external files | Reyk Floeter | |
just containing on key per line. this allows easier use of URL white/blacklists from external sources. | |||
2008-09-29 | Correct the logic when matching prefixes. This solves issues where IPv6 | Claudio Jeker | |
prefixes where matched on a simple deny from any prefix 0.0.0.0/0 rule. OK henning@ | |||
2008-09-29 | Use large pic asm for access to errno (needed for pie). Originally from | Kurt Miller | |
drahn@ but tweaked to use same scratch reg as PIC_PROLOGUE. okay miod@ drahn@ | |||
2008-09-29 | enable JMicron Ethernet (jme/jmphy) | Jonathan Gray | |
2008-09-29 | Use pools to do allocations for all sizes <= PAGE_SIZE. | Artur Grabowski | |
This will allow us to escape the limitations of kmem_map. At this moment, the per-type limits are still enforced for all sizes, but we might loosen that limit in the future after some thinking. Original diff from Mickey in kernel/5761 , I massaged it a little to obey the per-type limits. miod@ ok | |||
2008-09-29 | sort tokens for better readability | Reyk Floeter | |
2008-09-29 | allow to listen on a port range for redirections. this fixes | Reyk Floeter | |
stickyness with web applications that cannot do the clustering on their own and require stickyness with HTTP to HTTPS migration. this is required in many cases; it is a true fact that we cannot always fix the backend application in the real world. Tested and requested by many | |||
2008-09-29 | Refactor code that handles the kroute interfaces and make it possible to | Claudio Jeker | |
learn new interfaces during runtime. This should solve the issue with reloads failing when interfaces where created during runtime. OK norby@ |