1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 09:13:14 +02:00

core: remove "v" before versions displayed by /debug libs

This commit is contained in:
Sebastien Helleu
2013-11-18 07:46:14 +01:00
parent b63ac8a0f1
commit 3b53a3a8be
8 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -523,18 +523,18 @@ debug_libs_cb (void *data, const char *signal, const char *type_data,
gui_chat_printf (NULL, " core:");
gui_main_debug_libs ();
gui_chat_printf (NULL, " gcrypt: v%s%s",
gui_chat_printf (NULL, " gcrypt: %s%s",
GCRYPT_VERSION,
(weechat_no_gcrypt) ? " (not initialized)" : "");
#ifdef HAVE_GNUTLS
gui_chat_printf (NULL, " gnutls: v%s%s",
gui_chat_printf (NULL, " gnutls: %s%s",
GNUTLS_VERSION,
(weechat_no_gnutls) ? " (not initialized)" : "");
#else
gui_chat_printf (NULL, " gnutls: (not available)");
#endif
gui_chat_printf (NULL, " curl: v%s", LIBCURL_VERSION);
gui_chat_printf (NULL, " zlib: v%s", ZLIB_VERSION);
gui_chat_printf (NULL, " curl: %s", LIBCURL_VERSION);
gui_chat_printf (NULL, " zlib: %s", ZLIB_VERSION);
return WEECHAT_RC_OK;
}