Added argc and argv in request_info needed for the new cli sapi.

Modified registering $argc and $argv to support cli sapi.
This commit is contained in:
Edin Kadribasic 2002-01-06 13:58:05 +00:00
parent 6e1878b0fc
commit 1788410a56
2 changed files with 26 additions and 2 deletions

View file

@ -97,6 +97,10 @@ typedef struct {
/* this is necessary for Safe Mode */
char *current_user;
int current_user_length;
/* this is necessary for CLI module */
int argc;
char **argv;
} sapi_request_info;