summaryrefslogtreecommitdiffstats
path: root/common/collection/collection.h
diff options
context:
space:
mode:
authorDmitri Pal <dpal@redhat.com>2009-12-07 09:14:10 -0500
committerStephen Gallagher <sgallagh@redhat.com>2009-12-10 17:20:26 -0500
commitdb565939d9ee9d76e775d5e0cae64069bb2d56b9 (patch)
tree0d00b886aca6d3ddf19fddadaeeda74cfe18033a /common/collection/collection.h
parent18c06c0836306c194e5f89e37d2f3913b3bf01e4 (diff)
downloadsssd-db565939d9ee9d76e775d5e0cae64069bb2d56b9.tar.gz
sssd-db565939d9ee9d76e775d5e0cae64069bb2d56b9.tar.xz
sssd-db565939d9ee9d76e775d5e0cae64069bb2d56b9.zip
COLLECTION: Cleaning FIXME comments
I scanned through the code and made sure that the FIXME comments are either addressed or a corresponding ticket exists. I removed two comments that had "FIXME" in them. The tickets for those comments are #72 and #308.
Diffstat (limited to 'common/collection/collection.h')
-rw-r--r--common/collection/collection.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/common/collection/collection.h b/common/collection/collection.h
index 665d5f00c..1121b16fe 100644
--- a/common/collection/collection.h
+++ b/common/collection/collection.h
@@ -51,10 +51,6 @@
collections */
-/* Any data we deal with can't be longer than this */
-/* FIXME - make it compile time option */
-#define COL_MAX_DATA 65535
-
/* Default class for a free form collection */
#define COL_CLASS_DEFAULT 0
@@ -219,21 +215,6 @@ int col_create_collection(struct collection_item **ci,
const char *name,
unsigned cclass);
-/* Function that creates a named collection using a memory descriptor */
-/* FIXME - function is a placeholder. It is not implemented yet.
- * will be added in future together with the definition of the
- * descriptor structure.
- * The purpose is to control the internal implementation of the collection
- * a) Use hash table for faster searches if the collection is expected to be large.
- * b) Define memory functions to use.
- */
-/*
-int col_create_collection_ex(struct collection_item **ci,
- const char *name,
- unsigned cclass,
- struct cdescriptor *descrptor);
-*/
-
/* Function that destroys a collection */
void col_destroy_collection(struct collection_item *ci);