From 598929a50711be4cf089cfb9bed26b9e9d3c76f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Kuzn=C3=ADk?= Date: Mon, 30 May 2022 16:25:27 +0100 Subject: [PATCH] ITS#9856 Tag responseName correctly --- servers/lloadd/connection.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/servers/lloadd/connection.c b/servers/lloadd/connection.c index cae66a2a94..14f663e66f 100644 --- a/servers/lloadd/connection.c +++ b/servers/lloadd/connection.c @@ -535,10 +535,11 @@ lload_connection_close( LloadConnection *c, void *arg ) c->c_destroy == client_destroy ) { if ( c->c_pendingber != NULL || (c->c_pendingber = ber_alloc()) != NULL ) { - ber_printf( c->c_pendingber, "t{tit{esss}}", LDAP_TAG_MESSAGE, + ber_printf( c->c_pendingber, "t{tit{essts}}", LDAP_TAG_MESSAGE, LDAP_TAG_MSGID, LDAP_RES_UNSOLICITED, LDAP_RES_EXTENDED, LDAP_UNAVAILABLE, "", - "connection closing", LDAP_NOTICE_OF_DISCONNECTION ); + "connection closing", + LDAP_TAG_EXOP_RES_OID, LDAP_NOTICE_OF_DISCONNECTION ); unlock = 0; checked_unlock( &c->c_io_mutex ); CONNECTION_UNLOCK(c);