Commit adb95834eeae2ef37e94e05ecc96b835bc56918d
1 parent
b4fdfaec
Exists in
master
and in
5 other branches
Corrigindo chamada do ind de acordo com mensagem enviada por thiagomlima@bb.com.br
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/lib3270/ft.c
@@ -401,8 +401,8 @@ static void set_ft_state(H3270FT *session, LIB3270_FT_STATE state); | @@ -401,8 +401,8 @@ static void set_ft_state(H3270FT *session, LIB3270_FT_STATE state); | ||
401 | } | 401 | } |
402 | } | 402 | } |
403 | 403 | ||
404 | - snprintf(buffer,4095,"%s %s %s", "ind$file", | ||
405 | - (ft->flags & LIB3270_FT_OPTION_RECEIVE) ? "get" : "put", | 404 | + snprintf(buffer,4095,"%s %s %s", "IND$FILE", |
405 | + (ft->flags & LIB3270_FT_OPTION_RECEIVE) ? "GET" : "PUT", | ||
406 | ft->remote ); | 406 | ft->remote ); |
407 | 407 | ||
408 | if(*op) | 408 | if(*op) |