From 14f535d3bfa7c4827444e305d8852b8457f2be2e Mon Sep 17 00:00:00 2001 From: "DESKTOP-999R8N3\\CJY" Date: Mon, 18 Sep 2023 10:26:21 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- INT69DC_7C/Forms/FormMain.cs | 1 + INT69DC_7C/Forms/FormMainDisplay.cs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/INT69DC_7C/Forms/FormMain.cs b/INT69DC_7C/Forms/FormMain.cs index 54bcadb..a069a44 100644 --- a/INT69DC_7C/Forms/FormMain.cs +++ b/INT69DC_7C/Forms/FormMain.cs @@ -11020,6 +11020,7 @@ namespace INT69DC_7C.Forms if (null == strRecvMsg) { this.DelegateTextStatusOut(">Server Out"); + this.SetTrackingHistoryData(DataStore.TrackingOperation.EthernetDisconnect, "Client"); this.IsEthernetThreadStop = true; break; } diff --git a/INT69DC_7C/Forms/FormMainDisplay.cs b/INT69DC_7C/Forms/FormMainDisplay.cs index 1be8a5b..dbfc39f 100644 --- a/INT69DC_7C/Forms/FormMainDisplay.cs +++ b/INT69DC_7C/Forms/FormMainDisplay.cs @@ -979,6 +979,7 @@ namespace INT69DC_7C.Forms this.ParentForm.SystemConfig.CurrentUser.IsAdmin = userInfo.fadmin == 0 ? false : true; this.ParentForm.SystemConfig.CurrentUser.ActiveLevel = userInfo.active_level; + this.ParentForm.SystemConfig.CurrentUser.IsFirstPassword = userInfo.fFirstPW; #endregion this.UI_Invoke(delegate @@ -1014,7 +1015,6 @@ namespace INT69DC_7C.Forms } else if (result == DialogResult.Abort) { - // 비밀 번호 변경 띄우기 DialogFormLogOn logOn1 = new DialogFormLogOn(this.ParentForm, false, true); if (logOn1.ShowDialog() == DialogResult.OK) @@ -2439,6 +2439,7 @@ namespace INT69DC_7C.Forms this.ParentForm.SystemConfig.CurrentUser.IsAdmin = userInfo.fadmin == 0 ? false : true; this.ParentForm.SystemConfig.CurrentUser.ActiveLevel = userInfo.active_level; + this.ParentForm.SystemConfig.CurrentUser.IsFirstPassword = userInfo.fFirstPW; } } }