It wasn't possible to search for non-ascii components of names. Add
that support, thanks to Roland Mas for the prod.
Fixes Debian #511761
#include <libedataserver/e-source-group.h>
#include <gconf/gconf.h>
#include <glib.h>
+#include <locale.h>
void dump_as_vcard(EContact *contact, int dump_all)
{
GError *error = NULL;
GOptionContext *optioncontext;
+ setlocale (LC_ALL, "");
+
optioncontext = g_option_context_new ("- whack address book");
g_option_context_add_main_entries (optioncontext, entries, NULL);
g_option_context_parse (optioncontext, &argc, &argv, &error);