Commit 4a7e3335a0edf6b76d22da3539704838e935d5df

Authored by perry.werneck@gmail.com
1 parent 61045caf

Corrigindo erro na transferência de arquivo BB

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/lib3270/ft.c
... ... @@ -372,9 +372,9 @@ static void set_ft_state(H3270FT *session, LIB3270_FT_STATE state);
372 372 if(*op)
373 373 {
374 374 if(ft->flags & LIB3270_FT_OPTION_TSO)
375   - snconcat(buffer,4095," %s",op+1);
376   - else
377 375 snconcat(buffer,4095," (%s)",op+1);
  376 + else
  377 + snconcat(buffer,4095," %s",op+1);
378 378 }
379 379  
380 380 snconcat(buffer,4095,"%s","\n");
... ...