diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2023-07-18 15:07:42 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2023-07-18 15:07:42 +0000 |
commit | bc153e3f6cbb91a8b9a42e0984bd8ece49c0a6aa (patch) | |
tree | d323553152fb91c997c630fc83b13c5805ddf443 /sbin/iked/iked.h | |
parent | 9d536210930f8537854ebc951a2d1376c988d736 (diff) |
Kill ibuf_cat() since there is now ibuf_add_buf() in the official API.
OK tb@ tobhe@
Diffstat (limited to 'sbin/iked/iked.h')
-rw-r--r-- | sbin/iked/iked.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/iked/iked.h b/sbin/iked/iked.h index c08f35bd52f..7b56e565583 100644 --- a/sbin/iked/iked.h +++ b/sbin/iked/iked.h @@ -1,4 +1,4 @@ -/* $OpenBSD: iked.h,v 1.221 2023/07/16 15:21:46 claudio Exp $ */ +/* $OpenBSD: iked.h,v 1.222 2023/07/18 15:07:41 claudio Exp $ */ /* * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de> @@ -1268,7 +1268,6 @@ struct ibuf * ibuf_new(const void *, size_t); struct ibuf * ibuf_static(void); -int ibuf_cat(struct ibuf *, struct ibuf *); size_t ibuf_length(struct ibuf *); int ibuf_setsize(struct ibuf *, size_t); struct ibuf * |