summaryrefslogtreecommitdiff
path: root/functions.c
diff options
context:
space:
mode:
Diffstat (limited to 'functions.c')
-rw-r--r--functions.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/functions.c b/functions.c
index 31dce90..5dbeb0c 100644
--- a/functions.c
+++ b/functions.c
@@ -569,7 +569,8 @@ int createchannel(struct channel *channels, char *name, char *topic, char *topic
// Make sure the channel doesn't already exist
for (int i = 0; i < MAXCHANNELS; i++) {
if (strncmp(channels[i].name, name, strlen(name)) == 0) {
- perror("error: createchannel(): channel name already exists.\n");
+ // Note that this may be happening because we just reconnected
+ debugprint(DEBUG_CRIT, "error: createchannel(): channel name already exists.\n");
return 0;
break;
}