Skip to content

Commit

Permalink
resolved-dns-stream: pass the right error variable
Browse files Browse the repository at this point in the history
(cherry picked from commit be6aa74)
  • Loading branch information
dtardon authored and keszybz committed May 8, 2024
1 parent 2f849d3 commit ce1df5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resolve/resolved-dns-stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ static int dns_stream_identify(DnsStream *s) {
/* Make sure all packets for this connection are sent on the same interface */
r = socket_set_unicast_if(s->fd, s->local.sa.sa_family, s->ifindex);
if (r < 0)
log_debug_errno(errno, "Failed to invoke IP_UNICAST_IF/IPV6_UNICAST_IF: %m");
log_debug_errno(r, "Failed to invoke IP_UNICAST_IF/IPV6_UNICAST_IF: %m");
}

s->identified = true;
Expand Down Expand Up @@ -454,7 +454,7 @@ static int on_stream_io(sd_event_source *es, int fd, uint32_t revents, void *use
if (progressed && s->timeout_event_source) {
r = sd_event_source_set_time_relative(s->timeout_event_source, DNS_STREAM_ESTABLISHED_TIMEOUT_USEC);
if (r < 0)
log_warning_errno(errno, "Couldn't restart TCP connection timeout, ignoring: %m");
log_warning_errno(r, "Couldn't restart TCP connection timeout, ignoring: %m");
}

return 0;
Expand Down

0 comments on commit ce1df5e

Please sign in to comment.