Browse Source

Run through codespell

pull/1/head
Pavel Roskin 8 years ago
committed by Pavel Roskin
parent
commit
d74793ca2c
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      module-xrdp-sink.c
  2. +1
    -1
      module-xrdp-source.c

+ 1
- 1
module-xrdp-sink.c View File

@ -309,7 +309,7 @@ static int data_send(struct userdata *u, pa_memchunk *chunk) {
s.sun_family = AF_UNIX; s.sun_family = AF_UNIX;
bytes = sizeof(s.sun_path) - 1; bytes = sizeof(s.sun_path) - 1;
snprintf(s.sun_path, bytes, CHANSRV_PORT_STR, u->display_num); snprintf(s.sun_path, bytes, CHANSRV_PORT_STR, u->display_num);
pa_log_debug("trying to conenct to %s", s.sun_path);
pa_log_debug("trying to connect to %s", s.sun_path);
if (connect(fd, (struct sockaddr *)&s, if (connect(fd, (struct sockaddr *)&s,
sizeof(struct sockaddr_un)) != 0) { sizeof(struct sockaddr_un)) != 0) {
u->failed_connect_time = pa_rtclock_now(); u->failed_connect_time = pa_rtclock_now();


+ 1
- 1
module-xrdp-source.c View File

@ -313,7 +313,7 @@ static void thread_func(void *userdata) {
} else { } else {
if (u->want_src_data) if (u->want_src_data)
{ {
/* we dont want source data anymore */
/* we don't want source data anymore */
char buf[12]; char buf[12];
buf[0] = 0; buf[0] = 0;


Loading…
Cancel
Save