From f1a858b6ff9873627d785bdecd4c34ccaf7a2b98 Mon Sep 17 00:00:00 2001 From: Eric Heien Date: Wed, 2 Oct 2002 22:42:21 +0000 Subject: [PATCH] bug fix svn path=/trunk/boinc/; revision=456 --- client/win/wingui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/win/wingui.cpp b/client/win/wingui.cpp index cb444eace7..49daab4921 100755 --- a/client/win/wingui.cpp +++ b/client/win/wingui.cpp @@ -62,7 +62,7 @@ int initialize_prefs() { CLoginDialog dlg(IDD_LOGIN); int retval = dlg.DoModal(); if (retval != IDOK) return -1; - write_account_prefs((char*)(LPCTSTR) dlg.url, (char*)(LPCTSTR) dlg.auth); + write_account_file((char*)(LPCTSTR) dlg.url, (char*)(LPCTSTR) dlg.auth); return 0; }