Commit 8beca250bf03d457afe61b9d1b320ba913fb71d9

Authored by perry.werneck@gmail.com
1 parent 1a97deca

Corrigindo erro na transferência de arquivo BB

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
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");
... ...