diff --git a/src/ssb.c b/src/ssb.c index 9014fff2..635c4664 100644 --- a/src/ssb.c +++ b/src/ssb.c @@ -1704,12 +1704,12 @@ void tf_ssb_connect(tf_ssb_t* ssb, const char* host, int port, const uint8_t* ke if (memcmp(connection->serverpub, key, k_id_bin_len) == 0) { char id[k_id_base64_len]; tf_ssb_id_bin_to_str(id, sizeof(id), key); - printf("Not connecting to %s:%d, because we are already connected to %s.", host, port, key); + printf("Not connecting to %s:%d, because we are already connected to %s.\n", host, port, id); return; } else if (memcmp(key, ssb->pub, k_id_bin_len) == 0) { char id[k_id_base64_len]; tf_ssb_id_bin_to_str(id, sizeof(id), key); - printf("Not connecting to %s:%d, because they appear to be ourselves %s.", host, port, key); + printf("Not connecting to %s:%d, because they appear to be ourselves %s.\n", host, port, id); return; } }