Exposed CtdlLocateMessageByEuid in ctdl_module.h and deprecated
[citadel.git] / citadel / euidindex.c
index d68718e16804c7bb04fd532d7dd64565c4cd5dfc..c7499d832f35ccf700d427c8a35c274f380b8997 100644 (file)
@@ -91,6 +91,10 @@ int DoesThisRoomNeedEuidIndexing(struct ctdlroom *qrbuf) {
  * its message number.
  */
 long locate_message_by_euid(char *euid, struct ctdlroom *qrbuf) {
+       return CtdlLocateMessageByEuid (euid, qrbuf);
+}
+
+long CtdlLocateMessageByEuid(char *euid, struct ctdlroom *qrbuf) {
        char *key;
        int key_len;
        struct cdbdata *cdb_euid;