summaryrefslogtreecommitdiff
path: root/lib/libutil
AgeCommit message (Expand)Author
2020-12-15typo fix from aisha tammy; ok nicmJason McIntyre
2020-10-16double word fixes; from varik valeforJason McIntyre
2020-10-12make fixed-sized fixed-value mib[] arrays be constTheo de Raadt
2020-09-04Create ERRORS section for ober_read_elements.Martijn van Duren
2020-09-03Missed one case of errno not being set in previous.Martijn van Duren
2020-09-03Make sure ober_read_elements sets errno on every case where NULL isMartijn van Duren
2020-08-02Squelch warning by using idiom from libc bcrypt(3)Theo Buehler
2019-12-31Increase BER_MAX_OID_LEN from 32 to 64. Not every snmp OID found in theMartijn van Duren
2019-11-21zero tmpout too. reminded by related diff from timTed Unangst
2019-11-21overwrite the key in failure modes in case the caller doesn't check.Ted Unangst
2019-10-25Adjust whitespace, so Ta macros are aligned vertically as already done inTheo Buehler
2019-10-24The ber_* namespace is used by liblber since time immemorial,Theo Buehler
2019-08-30uucplock(3) is incorrectly named in some places, it is actually uu_lock(3)Theo de Raadt
2019-08-15Revert previous. There were some users of the quirky behaviour that wereMartijn van Duren
2019-08-14Fix argument list for ber_set_writecallbackMartijn van Duren
2019-08-14wonky comma;Jason McIntyre
2019-08-14Document that ber_scanf_elements' 'p' and 't' attribute don't eat theMartijn van Duren
2019-08-14Make ber_scanf_elements's 'e' attribute eat the element.Martijn van Duren
2019-08-14Make sure that ber in ber_scanf_elements is not NULL before parsing formatMartijn van Duren
2019-08-05Don't use a 0 element to determine the end of an OID when comparing twoMartijn van Duren
2019-08-05There's no reason why the first digit of an OID can't be 0.Martijn van Duren
2019-07-03snprintf/vsnprintf return < 0 on error, rather than -1.Theo de Raadt
2019-06-28Actually, the C standard only guarantees that atexit(3) returns non-zeroIngo Schwarze
2019-06-28When system calls indicate an error they return -1, not some arbitraryTheo de Raadt
2019-06-28atexit() returns -1 on failureTheo de Raadt
2019-06-01Limit maximum number of length octets to platform independent sizeof(int32_t).rob
2019-05-21whitespacerob
2019-05-21Cleanup some residual markup from the ber.3 days.rob
2019-05-17add various missing informationIngo Schwarze
2019-05-16Add XXX to a comment.rob
2019-05-16Correct errno markup. Noticed by schwarze.rob
2019-05-15sort SEE ALSO;Jason McIntyre
2019-05-15add substantial amounts of missing information;Ingo Schwarze
2019-05-15Consistently make errno a .Vtrob
2019-05-15delete some duplicate wordsIngo Schwarze
2019-05-15Split ber.3 into logical parts. Further tweaking will be done in tree.rob
2019-05-12Enable support for the writting of BITSTRING by treating it as an OCTETSTRING.rob
2019-05-12Enforce smallest number of contents octets for int (and enum).rob
2019-05-12Mention #include of <sys/types.h> in synopsis.rob
2019-05-12Fail early if a (universal) primitive type identifies as constructed, or if arob
2019-05-12Enforce minimal number of octets for tag > 30.rob
2019-05-12In long form encoding, explicitly prohibit an initial length octet of 0xffrob
2019-05-11The BER API is currently used by ldap, ldapd, ldapctl, ypldap, snmpd, androb
2019-04-23missing dots after ".%P pp"; the case of btree(3) wasIngo Schwarze
2019-01-25I am retiring my old email address; replace it with my OpenBSD one.Todd C. Miller
2019-01-20Change imsg header definitions to use standard types.Brent Cook
2019-01-14Calling llabs(LLONG_MIN) is undefined behavior, llvm 7.0.1 does notAlexander Bluhm
2018-09-26explicitly mention local processes; from geoff hillJason McIntyre
2018-08-10delete volatile intended to silence whiny old compilers around vfork.Theo de Raadt
2018-05-14constrain fractional part to [0-9] (less confusing to static analysis); ok ian@Damien Miller