Skip to content

Commit

Permalink
Checkin LiteSpeed SAPI 7.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
George Wang committed Jan 20, 2019
1 parent d978590 commit 66d7237
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 47 deletions.
4 changes: 3 additions & 1 deletion sapi/litespeed/lsapi_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,8 @@ static void sapi_lsapi_log_message(char *message, int syslog_type_int)
{
snprintf( buf, 8191, "%s\n", message );
message = buf;
if (len > 8191)
len = 8191;
++len;
}
LSAPI_Write_Stderr( message, len);
Expand Down Expand Up @@ -464,7 +466,7 @@ static int sapi_lsapi_activate()
static sapi_module_struct lsapi_sapi_module =
{
"litespeed",
"LiteSpeed V7.1",
"LiteSpeed V7.2",

php_lsapi_startup, /* startup */
php_module_shutdown_wrapper, /* shutdown */
Expand Down

0 comments on commit 66d7237

Please sign in to comment.