1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:47:44 +00:00

LibCore: Using printf() inside CIODevices will now call CIODevice::printf().

Well this was confusing. Obviously this code should never be calling outside
to ::printf() anyway, so just use dbgprintf() instead.
This commit is contained in:
Andreas Kling 2019-05-10 18:20:54 +02:00
parent 090e14d42c
commit dbf7878998
2 changed files with 8 additions and 6 deletions

View file

@ -47,15 +47,15 @@ bool CSocket::connect(const CSocketAddress& address, int port)
m_destination_address = address;
m_destination_port = port;
printf("Connecting to %s...", address.to_string().characters());
dbgprintf("Connecting to %s...", address.to_string().characters());
fflush(stdout);
int rc = ::connect(fd(), (struct sockaddr*)&addr, sizeof(addr));
if (rc < 0) {
if (errno == EINPROGRESS) {
printf("in progress.\n");
dbgprintf("in progress.\n");
m_notifier = make<CNotifier>(fd(), CNotifier::Event::Write);
m_notifier->on_ready_to_write = [this] {
printf("%s{%p} connected!\n", class_name(), this);
dbgprintf("%s{%p} connected!\n", class_name(), this);
m_connected = true;
m_notifier->set_event_mask(CNotifier::Event::None);
if (on_connected)
@ -66,7 +66,7 @@ bool CSocket::connect(const CSocketAddress& address, int port)
perror("connect");
exit(1);
}
printf("ok!\n");
dbgprintf("ok!\n");
m_connected = true;
return true;
}