1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

imap: checksrc: remove space after while before paren

This commit is contained in:
Daniel Stenberg 2015-11-07 23:21:29 +01:00
parent 2581585961
commit e3c85405d0

View File

@ -1840,7 +1840,7 @@ static char *imap_atom(const char *str, bool escape_only)
else if(!escape_only) {
const char *p3 = atom_specials;
while (*p3 && !others_exists) {
while(*p3 && !others_exists) {
if(*p1 == *p3)
others_exists = TRUE;