Skip to content

Commit d35fc99

Browse files
fix a commit lol
1 parent 24c3ed1 commit d35fc99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nex/register_common_authentication_server_protocols.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ import (
1212
func registerCommonAuthenticationServerProtocols() {
1313
ticketGrantingProtocol := ticket_granting.NewCommonTicketGrantingProtocol(globals.AuthenticationServer)
1414

15-
port, _ := strconv.Atoi(os.Getenv("PN_TFH_SECURE_SERVER_HOST"))
15+
port, _ := strconv.Atoi(os.Getenv("PN_TFH_SECURE_SERVER_PORT"))
1616

1717
secureStationURL := nex.NewStationURL("")
1818
secureStationURL.SetScheme("prudps")
19-
secureStationURL.SetAddress(os.Getenv("PN_TFH_SECURE_SERVER_PORT"))
19+
secureStationURL.SetAddress(os.Getenv("PN_TFH_SECURE_SERVER_HOST"))
2020
secureStationURL.SetPort(uint32(port))
2121
secureStationURL.SetCID(1)
2222
secureStationURL.SetPID(2)

0 commit comments

Comments
 (0)