Skip to content

Commit

Permalink
Issue #1542: The module identifiers don't take a trailing '.c'.
Browse files Browse the repository at this point in the history
Use trailing '.c' when referring to the file where the module is implemented.
  • Loading branch information
bschmalhofer committed Jan 19, 2022
1 parent c643bbf commit e8109b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions scripts/apache2-httpd-cgi.include.conf
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ Alias /otobo-web/ "/opt/otobo/var/httpd/htdocs/"

<IfModule mod_perl.c>

<IfModule mpm_event_module.c>
<IfModule mpm_event_module>
Error "The Multi-Processing Module mpm_event is active but it isn' supported by OTOBO. Please switch to mpm_prefork."
</IfModule>

<IfModule mpm_worker_module.c>
<IfModule mpm_worker_module>
Error "The Multi-Processing Module mpm_worker is active but it isn't supported by OTOBO. Please switch to mpm_prefork."
</IfModule>

Expand Down
4 changes: 2 additions & 2 deletions scripts/apache2-httpd-vhost-443.include.conf
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@

<IfModule mod_perl.c>

<IfModule mpm_event_module.c>
<IfModule mpm_event_module>
Error "The Multi-Processing Module mpm_event is active but it isn' supported by OTOBO. Please switch to mpm_prefork."
</IfModule>

<IfModule mpm_worker_module.c>
<IfModule mpm_worker_module>
Error "The Multi-Processing Module mpm_worker is active but it isn't supported by OTOBO. Please switch to mpm_prefork."
</IfModule>

Expand Down
4 changes: 2 additions & 2 deletions scripts/apache2-httpd.include.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

<IfModule mod_perl.c>

<IfModule mpm_event_module.c>
<IfModule mpm_event_module>
Error "The Multi-Processing Module mpm_event is active but it isn' supported by OTOBO. Please switch to mpm_prefork."
</IfModule>

<IfModule mpm_worker_module.c>
<IfModule mpm_worker_module>
Error "The Multi-Processing Module mpm_worker is active but it isn't supported by OTOBO. Please switch to mpm_prefork."
</IfModule>

Expand Down

0 comments on commit e8109b0

Please sign in to comment.