From aa797c0eeca55e8f2fee9460ef0ae400a90606c1 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Wed, 17 Mar 2004 03:13:00 +0000 Subject: [PATCH] #ifdef txn code --- clients/tools/ldapmodify.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/clients/tools/ldapmodify.c b/clients/tools/ldapmodify.c index 3e3a6b6b2c..9157824466 100644 --- a/clients/tools/ldapmodify.c +++ b/clients/tools/ldapmodify.c @@ -1125,8 +1125,14 @@ static int process_response( return ldap_result2error( ld, res, 1 ); } +#ifdef LDAP_GROUP_TRANSACTION /* assume (successful) transaction intermediate response */ return LDAP_SUCCESS; + +#else + /* intermediate response? */ + return LDAP_DECODING_ERROR; +#endif } static char * -- 2.39.5