summaryrefslogtreecommitdiff
path: root/ext/imap/imap.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/imap/imap.c')
-rw-r--r--ext/imap/imap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/imap/imap.c b/ext/imap/imap.c
index 82bef45ad1..7d7014c066 100644
--- a/ext/imap/imap.c
+++ b/ext/imap/imap.c
@@ -1279,10 +1279,10 @@ PHP_FUNCTION(imap_headerinfo)
do {
MAKE_STD_ZVAL(ccvals);
object_init(ccvals);
- if(addresstmp->personal) add_property_string( &ccvals, "personal", addresstmp->personal, 1);
- if(addresstmp->adl) add_property_string( &ccvals, "adl", addresstmp->adl, 1);
- if(addresstmp->mailbox) add_property_string( &ccvals, "mailbox", addresstmp->mailbox, 1);
- if(addresstmp->host) add_property_string( &ccvals, "host", addresstmp->host, 1);
+ if(addresstmp->personal) add_property_string(ccvals, "personal", addresstmp->personal, 1);
+ if(addresstmp->adl) add_property_string(ccvals, "adl", addresstmp->adl, 1);
+ if(addresstmp->mailbox) add_property_string(ccvals, "mailbox", addresstmp->mailbox, 1);
+ if(addresstmp->host) add_property_string(ccvals, "host", addresstmp->host, 1);
add_next_index_object(cc, ccvals);
} while ( (addresstmp = addresstmp->next) );
add_assoc_object(return_value, "cc", cc);