Add space in printout

There is a space missing betweet two words in the "Please provide your username" string to separate "to" and "other". This patch adds a space in the right place.
This commit is contained in:
Jeena 2017-02-02 11:34:07 +01:00 committed by GitHub
parent b375ee19ce
commit a3addedfe7

View file

@ -133,7 +133,7 @@ int client_ask_username(client_t *client)
/* show username request to the client */
snprintf(msg, BUFFER_LEN,
"\nPlease provide a username to identify yourself to"
"\nPlease provide a username to identify yourself to "
"other users (max %d characters):\n", USERNAME_LEN);
client_write(client, msg, strlen(msg));