CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2023/08/04 13:06:25
Modified files: sbin/iked : ca.c config.c crypto.c ikev2.c ikev2_msg.c ikev2_pld.c Log message: Convert calls to ibuf_length() where it is clear that the ibuf is not NULL to ibuf_size(). In some cases it is clear that the ibuf pointer should just be checked for NULL since afterwards a new ibuf is allocated in its place. OK tb@