Skip to content

Commit

Permalink
fix incorrect string replace in editor changed wrong parts
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed Apr 11, 2024
1 parent 0e51954 commit af2c050
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tunnels/client/reverse/reverse_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
static inline void upStream(tunnel_t *self, context_t *c)
{

reverse_client_state_t *state = state;
reverse_client_state_t *state = STATE(self);
if (c->payload != NULL)
{
reverse_client_con_state_t *dcstate = CSTATE_D(c);
Expand Down Expand Up @@ -45,7 +45,7 @@ static inline void upStream(tunnel_t *self, context_t *c)

static inline void downStream(tunnel_t *self, context_t *c)
{
reverse_client_state_t *state = state;
reverse_client_state_t *state = STATE(self);
unsigned int tid = c->line->tid;

if (c->payload != NULL)
Expand Down

0 comments on commit af2c050

Please sign in to comment.