From: Wilfried Göesgens Date: Thu, 9 Aug 2007 22:03:03 +0000 (+0000) Subject: * typos remaining... X-Git-Tag: v7.86~3164 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=f46674cf0eca886fce450bb21f90b32e98cbb822 * typos remaining... --- diff --git a/citadel/citserver.c b/citadel/citserver.c index 6032caeaa..6d1999014 100644 --- a/citadel/citserver.c +++ b/citadel/citserver.c @@ -336,7 +336,7 @@ int is_public_client(void) if (fp != NULL) while (fgets(buf, sizeof buf, fp)!=NULL) { char *ptr; ptr = buf; - while (!IsEmptyStr(*ptr)) { + while (!IsEmptyStr(ptr)) { if (buf[i] == '#') buf[i] = 0; else ptr++; } diff --git a/citadel/commands.c b/citadel/commands.c index 7ee8d5d2d..3222637dd 100644 --- a/citadel/commands.c +++ b/citadel/commands.c @@ -1009,7 +1009,7 @@ char *cmd_expand(char *strbuf, int mode) } if (!strncmp(ptr, "^c", 2)) { *ptr = ','; - strcpy(ptr + 1], ptr + 2]); + strcpy(ptr + 1, ptr + 2); } } diff --git a/citadel/modules/imap/imap_fetch.c b/citadel/modules/imap/imap_fetch.c index 0897c0bea..675b642b3 100644 --- a/citadel/modules/imap/imap_fetch.c +++ b/citadel/modules/imap/imap_fetch.c @@ -1129,6 +1129,7 @@ int imap_extract_data_items(char **argv, char *items) { int nest = 0; int i; char *start; + long initial_len; /* Convert all whitespace to ordinary space characters. */ for (i=0; !IsEmptyStr(&items[i]); ++i) {