Skip to content

Commit

Permalink
Cleanups
Browse files Browse the repository at this point in the history
What the heck was that dangling (c) for in the PUTC macros?  Were they
supposed to serve some sort of purpose, because I sure don't see one for
them.
  • Loading branch information
rlerdorf committed Sep 4, 1999
1 parent 7d33215 commit 54ec3a8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions main/php.h
Original file line number Diff line number Diff line change
Expand Up @@ -314,10 +314,10 @@ PHPAPI int cfg_get_string(char *varname, char **result);
#include "output.h"
#define PHPWRITE(str, str_len) zend_body_write((str), (str_len))
#define PUTS(str) zend_body_write((str), strlen((str)))
#define PUTC(c) zend_body_write(&(c), 1), (c)
#define PUTC(c) zend_body_write(&(c), 1)
#define PHPWRITE_H(str, str_len) zend_header_write((str), (str_len))
#define PUTS_H(str) zend_header_write((str), strlen((str)))
#define PUTC_H(c) zend_header_write(&(c), 1), (c)
#define PUTC_H(c) zend_header_write(&(c), 1)


#include "zend_operators.h"
Expand Down
28 changes: 14 additions & 14 deletions main/php_globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,24 +44,24 @@ extern ZEND_API php_core_globals core_globals;


struct _php_core_globals {
long magic_quotes_gpc;
long magic_quotes_runtime;
long magic_quotes_sybase;
zend_bool magic_quotes_gpc;
zend_bool magic_quotes_runtime;
zend_bool magic_quotes_sybase;

long asp_tags;
long short_tags;
long output_buffering;
zend_bool asp_tags;
zend_bool short_tags;
zend_bool output_buffering;

long safe_mode;
long sql_safe_mode;
zend_bool safe_mode;
zend_bool sql_safe_mode;
char *safe_mode_exec_dir;
long enable_dl;
zend_bool enable_dl;

long memory_limit;

long track_errors;
long display_errors;
long log_errors;
zend_bool track_errors;
zend_bool display_errors;
zend_bool log_errors;
char *error_log;

char *doc_root;
Expand All @@ -79,9 +79,9 @@ struct _php_core_globals {
char *arg_separator;
char *gpc_order;

long track_vars;
zend_bool track_vars;

long y2k_compliance;
zend_bool y2k_compliance;

short connection_status;
short ignore_user_abort;
Expand Down

0 comments on commit 54ec3a8

Please sign in to comment.