From f46674cf0eca886fce450bb21f90b32e98cbb822 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Thu, 9 Aug 2007 22:03:03 +0000 Subject: [PATCH] * typos remaining... --- citadel/citserver.c | 2 +- citadel/commands.c | 2 +- citadel/modules/imap/imap_fetch.c | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) 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) { -- 2.30.2