--- libraries/libldap/cancel.c 2006/01/03 22:12:07 1.9 +++ libraries/libldap/cancel.c 2006/02/16 04:01:30 1.10 @@ -1,4 +1,4 @@ -/* $OpenLDAP: pkg/ldap/libraries/libldap/cancel.c,v 1.8 2005/01/01 19:49:44 kurt Exp $ */ +/* $OpenLDAP: pkg/ldap/libraries/libldap/cancel.c,v 1.9 2006/01/03 22:12:07 kurt Exp $ */ /* This work is part of OpenLDAP Software . * * Copyright 1998-2006 The OpenLDAP Foundation. @@ -13,8 +13,8 @@ * . */ /* ACKNOWLEDGEMENTS: - * This program was orignally developed by Kurt D. Zeilenga for inclusion in - * OpenLDAP Software. + * This program was orignally developed by Kurt D. Zeilenga for inclusion + * in OpenLDAP Software. */ /* @@ -48,8 +48,8 @@ ldap_cancel( cancelidber = ber_alloc_t( LBER_USE_DER ); ber_printf( cancelidber, "{i}", cancelid ); ber_flatten( cancelidber, &cancelidvalp ); - rc = ldap_extended_operation( ld, LDAP_EXOP_X_CANCEL, - cancelidvalp, sctrls, cctrls, msgidp ); + rc = ldap_extended_operation( ld, LDAP_EXOP_CANCEL, + cancelidvalp, sctrls, cctrls, msgidp ); ber_free( cancelidber, 1 ); return rc; } @@ -68,8 +68,8 @@ ldap_cancel_s( cancelidber = ber_alloc_t( LBER_USE_DER ); ber_printf( cancelidber, "{i}", cancelid ); ber_flatten( cancelidber, &cancelidvalp ); - rc = ldap_extended_operation_s( ld, LDAP_EXOP_X_CANCEL, - cancelidvalp, sctrls, cctrls, NULL, NULL ); + rc = ldap_extended_operation_s( ld, LDAP_EXOP_CANCEL, + cancelidvalp, sctrls, cctrls, NULL, NULL ); ber_free( cancelidber, 1 ); return rc; }