diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Mount/Mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index 686a83b1..833dbe01 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -11720,7 +11720,7 @@ static BOOL CALLBACK BootLoaderPreferencesDlgProc (HWND hwndDlg, UINT msg, WPARA while (TextEditDialogBox(FALSE, hwndDlg, GetString ("BOOT_LOADER_CONFIGURATION_FILE"), dcsprop) == IDOK) { - if (dcsprop == currentDcsprop) + if (0 == strcmp(dcsprop.c_str(), currentDcsprop.c_str())) { break; } |