diff options
author | Havoc Pennington <hp@redhat.com> | 2003-04-18 05:52:11 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-04-18 05:52:11 +0000 |
commit | e0b284c7e38f0c002b2173d85ab89dc18700867c (patch) | |
tree | f309b8387d4a4487624154774ffdf5fcb3bdd182 /dbus/dbus-keyring.c | |
parent | 3df260c07102745c5606c313af862558f105f83e (diff) |
2003-04-18 Havoc Pennington <hp@pobox.com>
* dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
debug spew
* dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
handling problem
* dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
about DBUS_TEST_HOMEDIR once
* bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
the environment
* bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
config file so we test the right thing
Throughout: assorted docs improvements
Diffstat (limited to 'dbus/dbus-keyring.c')
-rw-r--r-- | dbus/dbus-keyring.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dbus/dbus-keyring.c b/dbus/dbus-keyring.c index 85f0a015..67ae056d 100644 --- a/dbus/dbus-keyring.c +++ b/dbus/dbus-keyring.c @@ -731,7 +731,12 @@ _dbus_keyring_new_homedir (const DBusString *username, } else { - _dbus_warn ("Using your real home directory for testing, set DBUS_TEST_HOMEDIR to avoid\n"); + static dbus_bool_t already_warned = FALSE; + if (!already_warned) + { + _dbus_warn ("Using your real home directory for testing, set DBUS_TEST_HOMEDIR to avoid\n"); + already_warned = TRUE; + } } } #endif |