upstream: sshpkt_fatal() does not return; ok djm

OpenBSD-Commit-ID: 7dfe847e28bd78208eb227b37f29f4a2a0929929
This commit is contained in:
markus@openbsd.org 2020-03-06 18:11:10 +00:00 committed by Damien Miller
parent 9b47bd7b09
commit 714e1cbca1
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: packet.h,v 1.91 2019/09/06 05:23:55 djm Exp $ */
/* $OpenBSD: packet.h,v 1.92 2020/03/06 18:11:10 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@ -177,7 +177,8 @@ int sshpkt_disconnect(struct ssh *, const char *fmt, ...)
__attribute__((format(printf, 2, 3)));
int sshpkt_add_padding(struct ssh *, u_char);
void sshpkt_fatal(struct ssh *ssh, int r, const char *fmt, ...)
__attribute__((format(printf, 3, 4)));
__attribute__((format(printf, 3, 4)))
__attribute__((noreturn));
int sshpkt_msg_ignore(struct ssh *, u_int);
int sshpkt_put(struct ssh *ssh, const void *v, size_t len);