Trivial commit to test automated builds
[citadel.git] / citadel / modules / imap / imap_tools.c
index f6839c9e81e23e2d6c2a24c5d3d8bbc787f0d217..7d7c0805cfebf6f8babc5d81a83e4a0b5c8d7877 100644 (file)
@@ -368,7 +368,6 @@ static char* fromimap(char* destp, char* destend, const char* src)
 }
 
 /* Undoes the special character conversion. */
-
 static int cfrommap(int c)
 {
        switch (c)
@@ -380,10 +379,7 @@ static int cfrommap(int c)
 }
 
 
-
-
 /* Break a command down into tokens, unquoting any escaped characters. */
-
 void MakeStringOf(StrBuf *Buf, int skip)
 {
        int i;
@@ -551,7 +547,6 @@ int imap_parameterize(citimap_command *Cmd)
 
 
 /* Convert a struct ctdlroom to an IMAP-compatible mailbox name. */
-
 long imap_mailboxname(char *buf, int bufsize, struct ctdlroom *qrbuf)
 {
        char* bufend = buf+bufsize;
@@ -603,7 +598,6 @@ long imap_mailboxname(char *buf, int bufsize, struct ctdlroom *qrbuf)
  * including IR_MAILBOX if we're dealing with a personal room.
  *
  */
-
 int imap_roomname(char *rbuf, int bufsize, const char *foldername)
 {
        int levels;
@@ -815,7 +809,7 @@ star:
                                return WILDMAT_TRUE;
                        }
                        while (!IsEmptyStr(text) &&
-                              /* make shure texst - 1 isn't before lcase_p */
+                              /* make sure text - 1 isn't before lcase_p */
                               ((text == lcase_text) || (*(text - 1) != WILDMAT_DELIM)))
                        {
                                if ((matched = do_imap_match(text++, p))
@@ -832,7 +826,6 @@ star:
 }
 
 
-
 /*
  * Support function for mailbox pattern name matching in LIST and LSUB
  * Returns nonzero if the supplied mailbox name matches the supplied pattern.
@@ -902,9 +895,6 @@ int imap_datecmp(const char *datestr, time_t msgtime) {
 }
 
 
-
-
-
 void IAPrintf(const char *Format, ...)
 {
        va_list arg_ptr;
@@ -914,11 +904,13 @@ void IAPrintf(const char *Format, ...)
        va_end(arg_ptr);
 }
 
+
 void iaputs(const char *Str, long Len)
 {
        StrBufAppendBufPlain(IMAP->Reply, Str, Len, 0);
 }
 
+
 void ireply(const char *Msg, long len)
 {
        citimap *Imap = IMAP;
@@ -935,6 +927,7 @@ void ireply(const char *Msg, long len)
        
 }
 
+
 void IReplyPrintf(const char *Format, ...)
 {
        citimap *Imap = IMAP;
@@ -959,8 +952,6 @@ void IReplyPrintf(const char *Format, ...)
 
 /* Output a string to the IMAP client, either as a literal or quoted.
  * (We do a literal if it has any double-quotes or backslashes.) */
-
-
 void IPutStr(const char *Msg, long Len)
 {
        int i;