diff options
author | Raf Czlonka <rczlonka@gmail.com> | 2018-11-21 16:21:06 +0000 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2018-11-22 10:59:18 +0100 |
commit | b4739b328ec62219efb7ed0df58fddb8ab47664a (patch) | |
tree | 11c6cf27feddf071b6679fc72e731d67534771cb /src | |
parent | 3fd6f70bd9d2bb9ff4921c53354b52465e616a51 (diff) | |
download | profani-tty-b4739b328ec62219efb7ed0df58fddb8ab47664a.tar.gz |
Nicks containig spaces need to be quoted
For example "FirstName LastName", need to be quoted.
Diffstat (limited to 'src')
-rw-r--r-- | src/command/cmd_defs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/cmd_defs.c b/src/command/cmd_defs.c index 0e4b5654..33ab6ff5 100644 --- a/src/command/cmd_defs.c +++ b/src/command/cmd_defs.c @@ -384,7 +384,7 @@ static struct cmd_t command_defs[] = "/roster add someone@contacts.org", "/roster add someone@contacts.org Buddy", "/roster remove someone@contacts.org", - "/roster nick myfriend@chat.org My Friend", + "/roster nick myfriend@chat.org \"My Friend\"", "/roster clearnick kai@server.com", "/roster size 15") }, |