Whitespace fixes

This commit is contained in:
Pieter Hintjens 2013-09-02 15:08:36 +02:00
parent c128fac7a7
commit 01b336f1f1
2 changed files with 3 additions and 3 deletions

View File

@ -28,12 +28,12 @@ static void zap_handler (void *zap)
char *sequence = s_recv (zap);
char *domain = s_recv (zap);
char *address = s_recv (zap);
char *identity = s_recv(zap);
char *identity = s_recv (zap);
char *mechanism = s_recv (zap);
char *username = s_recv (zap);
char *password = s_recv (zap);
printf("identity: %s\n", identity);
printf ("identity: %s\n", identity);
assert (streq (version, "1.0"));
assert (streq (mechanism, "PLAIN"));
assert (streq (identity, "IDENT"));

View File

@ -39,7 +39,7 @@ static void zap_handler (void *zap)
char *sequence = s_recv (zap);
char *domain = s_recv (zap);
char *address = s_recv (zap);
char *identity = s_recv(zap);
char *identity = s_recv (zap);
char *mechanism = s_recv (zap);
char *client_key = s_recv (zap);