# HG changeset patch # User Mikael Hallendal # Date 1219914791 -7200 # Node ID 08a9810b415bc6cbafe7ebf85f6980d55c93bd8f # Parent 812dd97245db141d7d40d7cd29ee5a59c6228c8e Fixed the help string for --username in lm-send-async and test-lm examples The help string said that you should only use 'user' in 'user@foo.bar' while the code requires a full jid. diff -r 812dd97245db -r 08a9810b415b examples/lm-send-async.c --- a/examples/lm-send-async.c Thu Aug 28 10:21:42 2008 +0200 +++ b/examples/lm-send-async.c Thu Aug 28 11:13:11 2008 +0200 @@ -52,7 +52,7 @@ { "port", 'P', 0, G_OPTION_ARG_INT, &port, "Port to connect to [default=5222]", NULL }, { "username", 'u', 0, G_OPTION_ARG_STRING, &username, - "Username to connect with (e.g. 'user' in user@server.org)", NULL }, + "Username to connect with (user@server.org)", NULL }, { "password", 'p', 0, G_OPTION_ARG_STRING, &password, "Password to try", NULL }, { "resource", 'r', 0, G_OPTION_ARG_STRING, &resource, diff -r 812dd97245db -r 08a9810b415b examples/test-lm.c --- a/examples/test-lm.c Thu Aug 28 10:21:42 2008 +0200 +++ b/examples/test-lm.c Thu Aug 28 11:13:11 2008 +0200 @@ -45,7 +45,7 @@ { "port", 'P', 0, G_OPTION_ARG_INT, &port, "Port to connect to [default=5222]", NULL }, { "username", 'u', 0, G_OPTION_ARG_STRING, &username, - "Username to connect with (e.g. 'user' in user@server.org)", NULL }, + "Username to connect with (user@server.org)", NULL }, { "password", 'p', 0, G_OPTION_ARG_STRING, &password, "Password to try", NULL }, { "resource", 'r', 0, G_OPTION_ARG_STRING, &resource,