aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-04-06 08:18:09 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-04-06 08:18:09 +0800
commit3ac32109474221bd1c62a3ec540baaaf16450261 (patch)
treec37a3a561040a989ae9223a6cfc2a0245e6413e0
parent51ee0c1f2d8d7d16592b15868f088021a2f1b366 (diff)
downloadgsoc2013-evolution-3ac32109474221bd1c62a3ec540baaaf16450261.tar
gsoc2013-evolution-3ac32109474221bd1c62a3ec540baaaf16450261.tar.gz
gsoc2013-evolution-3ac32109474221bd1c62a3ec540baaaf16450261.tar.bz2
gsoc2013-evolution-3ac32109474221bd1c62a3ec540baaaf16450261.tar.lz
gsoc2013-evolution-3ac32109474221bd1c62a3ec540baaaf16450261.tar.xz
gsoc2013-evolution-3ac32109474221bd1c62a3ec540baaaf16450261.tar.zst
gsoc2013-evolution-3ac32109474221bd1c62a3ec540baaaf16450261.zip
(e_passwords_remember_password): Removed debugging
message that would spit out the actual password, albeit in encoded form. svn path=/trunk/; revision=20682
-rw-r--r--e-util/ChangeLog6
-rw-r--r--e-util/e-passwords.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index dc8b1f130e..83404fd631 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,9 @@
+2003-04-05 Ettore Perazzoli <ettore@ximian.com>
+
+ * e-passwords.c (e_passwords_remember_password): Removed debugging
+ message that would spit out the actual password, albeit in encoded
+ form.
+
2003-04-04 Dan Winship <danw@ximian.com>
* e-account-list.c (gconf_accounts_changed): Don't start emitting
diff --git a/e-util/e-passwords.c b/e-util/e-passwords.c
index 124772cac4..5405e76245 100644
--- a/e-util/e-passwords.c
+++ b/e-util/e-passwords.c
@@ -182,8 +182,6 @@ e_passwords_remember_password (const char *component_name, const char *key)
state = save = 0;
base64_encode_close (value, len, FALSE, pass64, &state, &save);
- printf ("remembering password for (%s): %s\n", path, pass64);
-
gnome_config_private_set_string (path, pass64);
g_free (path);
g_free (pass64);