diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2016-12-11 15:34:33 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2016-12-11 22:06:12 +0100 |
commit | b47aa3bcf9fe2c193d48645c3ca77babbcfae077 (patch) | |
tree | 4a7eeea5d2b1540a2a12279c90ca2c4ca12ed20d | |
parent | ab4dd923d778048d5ba4a0bab7e730d0c157b322 (diff) | |
download | fetchmail-b47aa3bcf9fe2c193d48645c3ca77babbcfae077.tar.gz fetchmail-b47aa3bcf9fe2c193d48645c3ca77babbcfae077.tar.bz2 fetchmail-b47aa3bcf9fe2c193d48645c3ca77babbcfae077.zip |
Avoid compiling unused function.
-rw-r--r-- | uid_db.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -209,6 +209,7 @@ static struct pat_node *get_standalone_node(struct uid_db_record *rec) } /*** various helpers */ +#if 0 static inline int record_id_equal(struct uid_db_record const *r0, struct uid_db_record const *r1) { @@ -216,6 +217,7 @@ static inline int record_id_equal(struct uid_db_record const *r0, r0->id_len == r1->id_len && memcmp(r0->id, r1->id, r0->id_len) == 0; } +#endif static struct uid_db_record *append_to_list(struct uid_db_record **recp, struct uid_db_record *rec) |