Changeset 579
- Timestamp:
- 07/26/06 12:35:03
- Files:
-
- trunk/libtinymail-gnome-desktop/tny-account-store.c (modified) (2 diffs)
- trunk/libtinymail-gpe/tny-account-store.c (modified) (2 diffs)
- trunk/libtinymail-maemo/tny-account-store.c (modified) (2 diffs)
- trunk/libtinymail-olpc/tny-account-store.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail-gnome-desktop/tny-account-store.c
r551 r579 18 18 */ 19 19 20 #include <sys/mman.h> 21 20 22 #include <config.h> 21 23 #include <glib/gi18n-lib.h> … … 207 209 208 210 retval = g_strdup (pwd); 211 212 mlock (retval, strlen (retval)); 209 213 210 214 g_hash_table_insert (passwords, g_strdup (accountid), trunk/libtinymail-gpe/tny-account-store.c
r550 r579 18 18 */ 19 19 20 #include <sys/mman.h> 21 20 22 #include <config.h> 21 23 #include <glib/gi18n-lib.h> … … 89 91 90 92 retval = g_strdup (pwd); 93 94 mlock (retval, strlen (retval)); 91 95 92 96 g_hash_table_insert (passwords, g_strdup (accountid), trunk/libtinymail-maemo/tny-account-store.c
r550 r579 18 18 */ 19 19 20 #include <sys/mman.h> 21 20 22 #include <config.h> 21 23 #include <glib/gi18n-lib.h> … … 89 91 90 92 retval = g_strdup (pwd); 93 94 mlock (retval, strlen (retval)); 91 95 92 96 g_hash_table_insert (passwords, g_strdup (accountid), trunk/libtinymail-olpc/tny-account-store.c
r578 r579 18 18 */ 19 19 20 #include <sys/mman.h> 21 20 22 #include <config.h> 21 23 #include <glib/gi18n-lib.h> … … 85 87 86 88 retval = g_strdup (pwd); 89 90 mlock (retval, strlen (retval)); 87 91 88 92 g_hash_table_insert (passwords, g_strdup (accountid),
