aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorSankar P <psankar@novell.com>2006-05-11 18:34:54 +0800
committerSankarasivasubramanian Pasupathilingam <psankar@src.gnome.org>2006-05-11 18:34:54 +0800
commitdd5cc403f64f2bd25ed35ed14455496b8863f3c8 (patch)
treeec4001c0187e44e60ea07bf451a507fa8233effa /plugins
parent91a1042a4aaa980ef8faf96bf63949e0a4bc91f2 (diff)
downloadgsoc2013-evolution-dd5cc403f64f2bd25ed35ed14455496b8863f3c8.tar
gsoc2013-evolution-dd5cc403f64f2bd25ed35ed14455496b8863f3c8.tar.gz
gsoc2013-evolution-dd5cc403f64f2bd25ed35ed14455496b8863f3c8.tar.bz2
gsoc2013-evolution-dd5cc403f64f2bd25ed35ed14455496b8863f3c8.tar.lz
gsoc2013-evolution-dd5cc403f64f2bd25ed35ed14455496b8863f3c8.tar.xz
gsoc2013-evolution-dd5cc403f64f2bd25ed35ed14455496b8863f3c8.tar.zst
gsoc2013-evolution-dd5cc403f64f2bd25ed35ed14455496b8863f3c8.zip
Do not print the password in the terminal.
2006-05-11 Sankar P <psankar@novell.com> * exchange-account-setup.c: (btn_chpass_clicked): Do not print the password in the terminal. svn path=/trunk/; revision=31972
Diffstat (limited to 'plugins')
-rw-r--r--plugins/exchange-operations/ChangeLog5
-rw-r--r--plugins/exchange-operations/exchange-account-setup.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog
index 010b31f2fd..67c016c76c 100644
--- a/plugins/exchange-operations/ChangeLog
+++ b/plugins/exchange-operations/ChangeLog
@@ -1,3 +1,8 @@
+2006-05-11 Sankar P <psankar@novell.com>
+
+ * exchange-account-setup.c: (btn_chpass_clicked):
+ Do not print the password in the terminal.
+
2006-05-10 Sushma Rai <rsushma@novell.com>
* exchange-config-listener.c (account_changed): Using the HIGified
diff --git a/plugins/exchange-operations/exchange-account-setup.c b/plugins/exchange-operations/exchange-account-setup.c
index 32b66f9e10..80f9ef2dd6 100644
--- a/plugins/exchange-operations/exchange-account-setup.c
+++ b/plugins/exchange-operations/exchange-account-setup.c
@@ -134,7 +134,7 @@ btn_chpass_clicked (GtkButton *button, gpointer data)
/* "Cacel" button was hit */
return;
}
- g_print ("Current password is \"%s\"\n", old_password);
+ //g_print ("Current password is \"%s\"\n", old_password);
result = exchange_account_set_password (account, old_password, new_password);
if (result != EXCHANGE_ACCOUNT_CONNECT_SUCCESS)
exchange_operations_report_error (account, result);