summaryrefslogtreecommitdiff
path: root/main/php_logos.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/php_logos.c')
-rw-r--r--main/php_logos.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/php_logos.c b/main/php_logos.c
index eb3c523492..28329234ef 100644
--- a/main/php_logos.c
+++ b/main/php_logos.c
@@ -73,14 +73,14 @@ int php_info_logos(const char *logo_string TSRMLS_DC)
char *content_header;
int len;
- if(FAILURE==zend_hash_find(&phpinfo_logo_hash,(char *) logo_string,strlen(logo_string),(void **)&logo_image))
+ if(FAILURE==zend_hash_find(&phpinfo_logo_hash, (char *) logo_string, strlen(logo_string), (void **)&logo_image))
return 0;
len=strlen(CONTENT_TYPE_HEADER)+logo_image->mimelen;
content_header=malloc(len+1);
if(!content_header) return 0;
- strcpy(content_header,CONTENT_TYPE_HEADER);
- strcat(content_header,logo_image->mimetype);
+ strcpy(content_header, CONTENT_TYPE_HEADER);
+ strcat(content_header, logo_image->mimetype);
sapi_add_header(content_header, len, 1);
free(content_header);