Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-01 | adjust position of test so that it does something ! | Marc Espie | |
avoid a lot of extra stupid printing. | |||
2010-08-01 | typo | Marc Espie | |
2010-08-01 | fix the qt 4.5 -> 4.6 update issue. | Marc Espie | |
since we usually deal with directories in a global way, replacing a directory with something else didn't work. the fix is to record removed directories in Vstat in a "lazy" way: we only test these objects for existence if we add something else at the same location. Since this happens rarely, we can afford to perform the whole SharedItems dance twice... | |||
2010-07-31 | very old thinko, not really a problem, obviously, but groups and users are | Marc Espie | |
categories, the corresponding keywords are newgroup and newuser. | |||
2010-07-31 | keep location open while we grab updateinfo. | Marc Espie | |
deal with error fallout and need to forget unneeded stuff (halves number of connections, roughly) | |||
2010-07-31 | delete IIJ local functionalities. | YASUOKA Masahiko | |
2010-07-30 | fix header during update | Marc Espie | |
2010-07-28 | more explicit message | Marc Espie | |
2010-07-28 | let fatal work, fix typo | Marc Espie | |
2010-07-28 | pass state to Ustar objects, use it to display those pesky error and | Marc Espie | |
fatal messages. zap $opt_x from pkg_mklocated, do things like other commands do. | |||
2010-07-28 | Revert parts of previous change leading to assertion failure for | Martin Hedenfal | |
certain modify operations. Also fix logic error when replacing an attribute with the empty set. | |||
2010-07-27 | print these better | Marc Espie | |
2010-07-26 | better progress_message | Marc Espie | |
2010-07-26 | typo in message | Marc Espie | |
2010-07-26 | even if you write signal handlers to not do anything stupid when you're | Marc Espie | |
not on a terminal, they STILL interrupt long system calls and cause sysread to fail, so disable them when they're not needed. problem found by mlarkin@ this is just a band-aid, I guess I really need to "reset" non-needed signals globally whenever I fork... sigh. | |||
2010-07-26 | - use warnx instead of warn when skipping large lines, as errno is | Miod Vallat | |
nonsensical in that case (and usually zero). - when altering the groups file, preserve a single "+" line instead of complaining it is incorrect and removing it. ok fgsch@ millert@ ray@ | |||
2010-07-26 | Fix a sigbus due to unaligned memory access, found when compacting on | Martin Hedenfal | |
sparc64. reads ok to gilles@ | |||
2010-07-26 | typo (canacar@) | Marc Espie | |
2010-07-25 | oops | Marc Espie | |
2010-07-24 | pass state to Makewhatis. With new hooks in there, that means display | Marc Espie | |
will integrate with pkg_add output (no more disturbed error messages from wrong subject lines) | |||
2010-07-23 | smtpd should NOT fatal when it permanently fails a bounce delivery as this | Gilles Chehade | |
can be a normal situation and will allow a local/authenticated user to trigger the fatal on purpose ... ignore permanently failed bounce deliveries since there's not much smtpd can do anyway, that's what the previous queue code did. experienced and reported by pirofti@ | |||
2010-07-23 | Manuel Bouyer rescinded clauses 3 and 4 of his license text. | Jonathan Gray | |
2010-07-21 | Search filter BER tags use a context-specific class, not an application | Martin Hedenfal | |
class. This allows ypldap to talk to ldapd, which otherwise refuses the search filter. ok gilles@ | |||
2010-07-21 | fix NULL-deref, ok martinh@ | Gilles Chehade | |
2010-07-21 | Add a history section saying that ldapd/ldapctl first appeared in 4.8. | Martin Hedenfal | |
2010-07-20 | opration -> operation | Miod Vallat | |
2010-07-20 | Instead of checking for the *etcXX.tgz filename, check whether the | Antoine Jacoutot | |
tarball contains ./var/db/sysmerge/etcsum or ./var/db/sysmerge/xetcsum. First, it's more correct and second it allows people to rename the sets without sysmerge bailing out. feature requested and tested by oga@ | |||
2010-07-20 | Another hand rolled offsetof(), replace with mask2prefixlen from kroute.c | Claudio Jeker | |
which was copied from bgpd. Found by deraadt@ | |||
2010-07-20 | delete unused variable | Theo de Raadt | |
2010-07-20 | do not use gcc -W options which you do not understand | Theo de Raadt | |
2010-07-19 | When removing an announced prefix inherit the metric and ext_tag from the | Claudio Jeker | |
LSA that is currently in the tree. Pruning with default metrics is bad since the checksum of the LSA is different and therefor an additional update cycle is needed to convince the other systems. OK bluhm@, sthen@ | |||
2010-07-19 | lsa_refresh() was able to resurect dead LSA resulting in zombie anouncements. | Claudio Jeker | |
Make sure that if the LSA is managed by this router that we force timed-out LSA to stay timed out which causes them to be pruned in the secound round. This problem can show up when not exactly the same LSA is pruned because the checksum is used as tiebreaker resulting in indeterministic selection of which LSA is considered newer. OK bluhm@, sthen@ | |||
2010-07-18 | Fix an unaligned memory access. | Martin Hedenfal | |
2010-07-18 | fix a double "is"; | Jason McIntyre | |
2010-07-17 | When running in full diff mode, don't wait for user input before | Antoine Jacoutot | |
starting the comparison anymore. It does not bring us anything and allows to chop 30 lines of the script. While here, remove some empty lines. | |||
2010-07-15 | More delimiters that need quoting inside macros, hunted down by jmc@, | Ingo Schwarze | |
who asked me to commit because he is just running out of the door. | |||
2010-07-15 | store openssl error output during verification, and log it if it didn't work. | Marc Espie | |
2010-07-14 | Another hand knitted offsetof() that needs to die. This time steal the | Claudio Jeker | |
mask2prefixlen6 version from bgpd. | |||
2010-07-14 | use offsetof() instead of self knitted version to please gcc4. | Claudio Jeker | |
stolen from ospf.h | |||
2010-07-14 | Fix a mrt fd leak by moving the block which closes finished dumps. | Claudio Jeker | |
The previous location also depended on poll results and in most cases was therefor not entered because finished dumps are not added to the poll array. Problem reported by Peter Haag, OK henning@ | |||
2010-07-14 | handle RTM_DESYNC. if the kernel says we're out of sync with the kernel | David Gwynne | |
routing table and interface list, do a reload of the kernel state. ive been running this in production for 2 or 3 weeks. tested by sthen@ ok sthen@ claudio@ deraadt@ code written by andrew sallaway at the univeristy of queensland. | |||
2010-07-13 | Avoid double free in ldap modify requests. The values received in the | Martin Hedenfal | |
modify request is linked into the stored ber structure, and then both are freed. Fix this by unlinking the values from the request. | |||
2010-07-13 | no more rmd160(1); | Jason McIntyre | |
2010-07-12 | missed one next -> return, as noticed by marco@ | Marc Espie | |
2010-07-12 | Merge duplicate log messages into one log_warn(). | Alexander Bluhm | |
ok claudio@ | |||
2010-07-12 | need to copy f() parameters, otherwise strange bugs with sub expressions | Marc Espie | |
may occur (bug in locality in @_ ?) Add missing bagage to State.pm to be able to interact directly with Makewhatis, later. | |||
2010-07-11 | move compare into LibSpec, it's not so specific to Signature after all | Marc Espie | |
2010-07-11 | display updateset name alongside collisionreport (turns out it's not | Marc Espie | |
always obvious) | |||
2010-07-10 | Retry requests when the btree is busy. Without this, clients will just hang | Martin Hedenfal | |
waiting for a response if the btree was being reopened when the request was received. | |||
2010-07-09 | ospfd is a AF_INET only routing daemon so limit the routing socket to that | Claudio Jeker | |
af. This is possible since this filtering no longer blocks RTM_IFINFO. OK henning@ |