Changeset a24b16602b2109f5f6aa6e2349c56510b0c4d427
- Timestamp:
- 10/04/11 03:26:23
(2 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1317698783 -0400
- git-parent:
[623e0ea7c0460f481fea40517710c30ab62914fc]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1317698783 -0400
- Message:
https always means SSL, not just when no port is specified
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| refaa4be |
ra24b166 |
|
| 288 | 288 | elseif schema == 'https' then |
|---|
| 289 | 289 | port = check.config.port or 443 |
|---|
| 290 | | use_ssl = true |
|---|
| 291 | 290 | else |
|---|
| 292 | 291 | error(schema .. " not supported") |
|---|
| 293 | 292 | end |
|---|
| | 293 | end |
|---|
| | 294 | if schema == 'https' then |
|---|
| | 295 | use_ssl = true |
|---|
| 294 | 296 | end |
|---|
| 295 | 297 | |
|---|