comparison lib/rfc959.c @ 677:8990a8a26ccf

2005-1-24 Brian Masney <masneyb@gftp.org> * lib/protocols.c lib/rfc959.c src/gtk/dnd.c src/gtk/gftp-gtk.c src/gtk/gtkui.c src/gtk/menu-items.c src/gtk/misc-gtk.c src/gtk/transfer.c src/gtk/view-dialog.c src/uicommon/gftpui.c - make sure the logging level gftp_logging_error is used for all error messages
author masneyb
date Tue, 25 Jan 2005 02:34:19 +0000
parents f16c4e75070e
children d4207e5d2aa3
comparison
equal deleted inserted replaced
676:72a6de68d9c8 677:8990a8a26ccf
709 memcpy (&data_addr.sin_addr, request->hostp->h_addr_list[request->curhost], 709 memcpy (&data_addr.sin_addr, request->hostp->h_addr_list[request->curhost],
710 request->hostp->h_length); 710 request->hostp->h_length);
711 #endif 711 #endif
712 712
713 pos = (char *) &data_addr.sin_addr; 713 pos = (char *) &data_addr.sin_addr;
714 request->logging_function (gftp_logging_misc, request, 714 request->logging_function (gftp_logging_error, request,
715 _("Ignoring IP address in PASV response, connecting to %d.%d.%d.%d:%d\n"), 715 _("Ignoring IP address in PASV response, connecting to %d.%d.%d.%d:%d\n"),
716 pos[0] & 0xff, pos[1] & 0xff, pos[2] & 0xff, pos[3] & 0xff, 716 pos[0] & 0xff, pos[1] & 0xff, pos[2] & 0xff, pos[3] & 0xff,
717 ntohs (data_addr.sin_port)); 717 ntohs (data_addr.sin_port));
718 } 718 }
719 else 719 else