Skip to content

Commit

Permalink
fix elfmz#2396: NetRocks: Extra connection options, load KeepAlive co…
Browse files Browse the repository at this point in the history
…rrectly
  • Loading branch information
spnethw committed Sep 24, 2024
1 parent adca122 commit 0c99e74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NetRocks/src/UI/Settings/ExtraSiteSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class ExtraSiteSettings : protected BaseDialog

_di.SetLine(2);
_di.AddAtLine(DI_TEXT, 5,56, 0, MKeepAlive);
itoa(std::min(0, sc.GetInt("KeepAlive", 0)), sz, 10);
itoa(sc.GetInt("KeepAlive", 0), sz, 10);
_i_keepalive = _di.AddAtLine(DI_FIXEDIT, 57,62, DIF_MASKEDIT, sz, "999999");

_di.NextLine();
Expand Down

0 comments on commit 0c99e74

Please sign in to comment.