Removed the old CtdlSaveMsgPointerInRoom() API. Everything now
[citadel.git] / citadel / msgbase.c
index a95ecd450ff8c4807de54f61dd76eb8541076d96..c70b08e763acb934567ead79729eab0b3261d449 100644 (file)
@@ -3467,13 +3467,6 @@ int CtdlCopyMsgsToRoom(long *msgnums, int num_msgs, char *dest) {
 }
 
 
-/*
- * Back end API function for moves and deletes (single message)
- */
-int CtdlCopyMsgToRoom(long msgnum, char *dest) {
-       return CtdlCopyMsgsToRoom(&msgnum, 1, dest);
-}
-
 
 
 /*
@@ -3533,7 +3526,7 @@ void cmd_move(char *args)
                return;
        }
 
-       err = CtdlCopyMsgToRoom(num, targ);
+       err = CtdlCopyMsgsToRoom(&num, 1, targ);
        if (err != 0) {
                cprintf("%d Cannot store message in %s: error %d\n",
                        err, targ, err);