aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/importers/evolution-ldif-importer.c
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook/importers/evolution-ldif-importer.c')
-rw-r--r--addressbook/importers/evolution-ldif-importer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/addressbook/importers/evolution-ldif-importer.c b/addressbook/importers/evolution-ldif-importer.c
index 5f5c40ee13..41dda05a40 100644
--- a/addressbook/importers/evolution-ldif-importer.c
+++ b/addressbook/importers/evolution-ldif-importer.c
@@ -136,7 +136,7 @@ getValue( gchar **src )
gboolean need_base64 = (*s == ':');
copy_line:
- while ( *s != 0 && *s != '\n' && *s != '\r' )
+ while (*s != 0 && *s != '\n' && *s != '\r')
dest = g_string_append_c (dest, *s++);
if (*s == '\r') s++;
@@ -249,7 +249,7 @@ parseLine (LDIFImporter *gci, EContact *contact,
}
/* first, check for a 'continuation' line */
- if ( ptr[0] == ' ' && ptr[1] != '\n' ) {
+ if (ptr[0] == ' ' && ptr[1] != '\n') {
g_warning ("unexpected continuation line");
return FALSE;
}
@@ -260,7 +260,7 @@ parseLine (LDIFImporter *gci, EContact *contact,
*colon = 0;
value = colon + 1;
- while ( isspace(*value) )
+ while (isspace(*value))
value++;
ldif_value = getValue(&value );