Updated copyright notices to include the year 2018.
Updated copyright notices to include the year 2017.
global: freshen copyright git ls-files | xargs perl -p -i -e 's/(\d+)-201[0-5]/$1-2016/g;s/ (201[0-5]) Dovecot/ $1-2016 Dovecot/'
global: freshen copyright Robomatically: git ls-files | xargs perl -p -i -e 's/(\d+)-201[0-4]/$1-2015/g;s/ (201[0-4]) Dovecot/ $1-2015 Dovecot/' Happy 2015 everyone! Signed-off-by: Phil Carmody <phil@dovecot.fi>
Updated copyright notices to include year 2014.
Replaced all -1U and (unsigned int)-1 with UINT_MAX. It's somewhat clearer this way. Also clang's -fsanitize=integer gives runtime errors about -1U (but not about explicit casts, so no need to change (type)-1 casts).
Oops :) Update copyrights to 2013 without breaking all .c files.
Updated copyright notices to include year 2013.
Array API changed: ARRAY_DEFINE(name, type) -> ARRAY(type) name Easy way to update your existing code: perl -i -pe 's:ARRAY_DEFINE\(([^,]+), *([^)]+)\);:ARRAY($2) $1;:' **/*.[ch]
Updated copyright notices to include year 2012.
Updated copyright notices to include year 2011.
priority queue: Set item's idx value to invalid when it's removed from queue. This should assert-crash on double-removes more reliably.
Updated copyright notices to include year 2010. --HG-- branch : HEAD
Added priorityq_items() for getting all items from a priority queue. --HG-- branch : HEAD
Updated copyright notices to include year 2009. --HG-- branch : HEAD
Fixed removing last item from priority queue. --HG-- branch : HEAD
Added a priority queue implementation. --HG-- branch : HEAD