Mercurial > dropbear
comparison common-session.c @ 1020:363c0feca5d4
Fix print that no longer works since we're not using fourCCs
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 13 Feb 2015 23:17:23 +0800 |
parents | 0bb16232e7c4 |
children | 24135c8e1d46 |
comparison
equal
deleted
inserted
replaced
1019:6c42bab6e081 | 1020:363c0feca5d4 |
---|---|
571 TRACE(("update_channel_prio: not any")) | 571 TRACE(("update_channel_prio: not any")) |
572 new_prio = DROPBEAR_PRIO_LOWDELAY; | 572 new_prio = DROPBEAR_PRIO_LOWDELAY; |
573 } | 573 } |
574 | 574 |
575 if (new_prio != ses.socket_prio) { | 575 if (new_prio != ses.socket_prio) { |
576 TRACE(("Dropbear priority transitioning %4.4s -> %4.4s", (char*)&ses.socket_prio, (char*)&new_prio)) | 576 TRACE(("Dropbear priority transitioning %d -> %d", ses.socket_prio, new_prio)) |
577 set_sock_priority(ses.sock_out, new_prio); | 577 set_sock_priority(ses.sock_out, new_prio); |
578 ses.socket_prio = new_prio; | 578 ses.socket_prio = new_prio; |
579 } | 579 } |
580 } | 580 } |
581 | 581 |