]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
ITS#9856 Tag responseName correctly
authorOndřej Kuzník <ondra@mistotebe.net>
Mon, 30 May 2022 15:25:27 +0000 (16:25 +0100)
committerQuanah Gibson-Mount <quanah@openldap.org>
Mon, 6 Jun 2022 16:30:08 +0000 (16:30 +0000)
servers/lloadd/connection.c

index cae66a2a94916f7de5fc1f0f0b547d127f5c35d5..14f663e66ffd582316d4ef7452708a3e3ac0a471 100644 (file)
@@ -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);