Commit e3cac908 authored by Dafydd Harries's avatar Dafydd Harries

ice-test-client: concatenate usernames in correct order

darcs-hash:20070217153936-c9803-cbe0b30443ffbf42a73d1226e4ee3b525e481028.gz
parent 5e9a8525
...@@ -94,7 +94,7 @@ handle_connection (guint sock) ...@@ -94,7 +94,7 @@ handle_connection (guint sock)
{ {
gchar *username; gchar *username;
username = g_strdup_printf ("lala%s", candidate->username); username = g_strdup_printf ("%slala", candidate->username);
send_stun (&udpsock, candidate->addr, username); send_stun (&udpsock, candidate->addr, username);
g_free (username); g_free (username);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment