diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-06-28 11:59:33 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-06-28 11:59:33 +0200 |
commit | b3c467bc312114eb7cdd45e6bc36a3d87bee6064 (patch) | |
tree | f6b81f7be2242dff1f59e711728d520d8c44a802 /storage.c | |
parent | 90bbb0efeae19bcc6a1096d8c89fbf3981c83503 (diff) |
Cleaned up Makefiles + configure: Cleaning up bitlbee.pc, removed the second
piece of libevent probing code that mysteriously appeared (?), better handling
of storage backends, an SSL module is now always included (so BitlBee can be
compiled again when building without MSN- and Jabber-support (http_client also
depends on SSL libs and can't be disabled)), oh, and fixed a compiler warning.
Diffstat (limited to 'storage.c')
-rw-r--r-- | storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ void register_storage_backend(storage_t *backend) static storage_t *storage_init_single(const char *name) { GList *gl; - storage_t *st; + storage_t *st = NULL; for (gl = storage_backends; gl; gl = gl->next) { st = gl->data; |