From a842b7eb49fd640d66aeaec26c05166ef55784f8 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Wed, 26 Feb 2014 10:21:03 +0100 Subject: Remove unused structures. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reported by: cppcheck 'struct py_sss_transaction', 'struct resolve_get_domain_stat', 'struct sync_op_res' were defined in implementation modules, but they were not used anywhere. Reviewed-by: Michal Žídek --- src/python/pysss.c | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/python') diff --git a/src/python/pysss.c b/src/python/pysss.c index f56916ddf..668d77c56 100644 --- a/src/python/pysss.c +++ b/src/python/pysss.c @@ -75,17 +75,6 @@ typedef struct { int unlock; } PySssLocalObject; -/* - * The transaction object - */ -struct py_sss_transaction { - PySssLocalObject *self; - struct ops_ctx *ops; - - bool transaction_done; - int error; -}; - /* * Error reporting */ -- cgit