X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Feuidindex.c;h=8533caabf85a6099e7ed32463341265b27691b36;hb=c71df26b9d35c07eb9c1322a7e83caa86337ad82;hp=edff5d7c6147c62a0a957f86ce457b5052a66c7a;hpb=51834f3a61644b1f6f5a5f528cf36fbfbc73b2de;p=citadel.git diff --git a/citadel/euidindex.c b/citadel/euidindex.c index edff5d7c6..8533caabf 100644 --- a/citadel/euidindex.c +++ b/citadel/euidindex.c @@ -1,7 +1,7 @@ /* * Index messages by EUID per room. * - * Copyright (c) 1987-2017 by the citadel.org team + * Copyright (c) 1987-2019 by the citadel.org team * * This program is open source software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 3. @@ -106,7 +106,7 @@ void index_message_by_euid(char *euid, struct ctdlroom *qrbuf, long msgnum) { char *data; int data_len; - syslog(LOG_DEBUG, "euidindex: ndexing message #%ld <%s> in <%s>", msgnum, euid, qrbuf->QRname); + syslog(LOG_DEBUG, "euidindex: indexing message #%ld <%s> in <%s>", msgnum, euid, qrbuf->QRname); key_len = strlen(euid) + sizeof(long) + 1; key = malloc(key_len);