diff options
author | Sascha Schumann <sas@php.net> | 2000-11-02 15:47:02 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-11-02 15:47:02 +0000 |
commit | 43ff395b65234ebc606549720b24387ec5a79d06 (patch) | |
tree | e8dc1e802a3fbfca7fea3b38b229dd805eea89ba /main/php_logos.c | |
parent | 9866d899e926c971980fd13ccaa9ab5e83f17b90 (diff) | |
download | php-git-43ff395b65234ebc606549720b24387ec5a79d06.tar.gz |
Const'ify part of sapi_request_info.
query_string, post_data, path_translated, request_uri, auth_user,
auth_password and argv0 are modified, so they cannot become const.
Diffstat (limited to 'main/php_logos.c')
-rw-r--r-- | main/php_logos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_logos.c b/main/php_logos.c index 94a0830c2f..aa66843d60 100644 --- a/main/php_logos.c +++ b/main/php_logos.c @@ -68,7 +68,7 @@ int php_shutdown_info_logos(void) } #define CONTENT_TYPE_HEADER "Content-Type: " -int php_info_logos(char *logo_string) +int php_info_logos(const char *logo_string) { php_info_logo *logo_image; char *content_header; |