summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorNemDiggers <horo@ipwnage.com>2013-07-31 19:02:06 -0400
committerNemDiggers <horo@ipwnage.com>2013-07-31 19:02:06 -0400
commitd7dcb6f095e906544061b331c086cfe0f1644ece (patch)
tree64552dfa062da73a96502f317d952635fe391096 /testing
parent1a8017d4d419ed2c0cc986f8edbdae0cd4fcaae0 (diff)
Remove period from status set
It can make for awkward displays if you put a period in your status.
Diffstat (limited to 'testing')
-rw-r--r--testing/toxic/prompt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/toxic/prompt.c b/testing/toxic/prompt.c
index f1b6e689..b09b3d8d 100644
--- a/testing/toxic/prompt.c
+++ b/testing/toxic/prompt.c
@@ -148,7 +148,7 @@ static void execute(ToxWindow* self, char* cmd) {
148 msg++; 148 msg++;
149 149
150 m_set_userstatus((uint8_t*) msg, strlen(msg)+1); 150 m_set_userstatus((uint8_t*) msg, strlen(msg)+1);
151 wprintw(self->window, "Status set to: %s.\n", msg); 151 wprintw(self->window, "Status set to: %s\n", msg);
152 } 152 }
153 else if(!strncmp(cmd, "nick ", strlen("nick "))) { 153 else if(!strncmp(cmd, "nick ", strlen("nick "))) {
154 char* nick; 154 char* nick;