-/* $OpenBSD: dispatch.c,v 1.33 2023/03/05 05:34:09 dtucker Exp $ */
+/* $OpenBSD: dispatch.c,v 1.34 2025/05/21 06:44:24 djm Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
{
int r;
- logit("dispatch_protocol_error: type %d seq %u", type, seq);
+ logit_f("type %d seq %u", type, seq);
if ((r = sshpkt_start(ssh, SSH2_MSG_UNIMPLEMENTED)) != 0 ||
(r = sshpkt_put_u32(ssh, seq)) != 0 ||
(r = sshpkt_send(ssh)) != 0 ||
int
dispatch_protocol_ignore(int type, u_int32_t seq, struct ssh *ssh)
{
- logit("dispatch_protocol_ignore: type %d seq %u", type, seq);
+ logit_f("type %d seq %u", type, seq);
return 0;
}