Changeset 199
- Timestamp:
- 08/25/04 14:39:35 (9 years ago)
- Location:
- trunk/wifidog
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
src/auth.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog/ChangeLog
r198 r199 1 1 # $Header$ 2 2004-08-25 Alexandre Carmel-Veilleux <acv@acv.ca> 3 * src/auth.c: Path as changed in 1.26 was preceded by a /, the path already contains a / so it would yield http://host//path/ 4 2 5 2004-08-25 Benoit Gr�goire <bock@step.polymtl.ca> 3 6 * src/auth.c: Remove hardcoded path. -
trunk/wifidog/src/auth.c
r198 r199 200 200 client->fw_connection_state = FW_MARK_KNOWN; 201 201 fw_allow(client->ip, client->mac, FW_MARK_KNOWN); 202 _http_redirect(client->fd, "http://%s/%s/portal/?gw_id=%s", config_get_config()->auth_servers->authserv_hostname, 203 config_get_config()->auth_servers->authserv_path, 204 config_get_config()->gw_id); 202 _http_redirect(client->fd, "http://%s%s/portal/?gw_id=%s", 203 config_get_config()->auth_servers->authserv_hostname, 204 config_get_config()->auth_servers->authserv_path, 205 config_get_config()->gw_id); 205 206 break; 206 207 case AUTH_VALIDATION_FAILED:
