FTP Plug-In 2.0.8 File Ending Problem

I'm not sure where in the process this happens, but when opening and saving files on our AIX server using the FTP Plug-In 2.0.8, I sometimes get a chunk from the end of the file repeated, like this:

Code:
*/
  procedure p_remove(p_pidm      in spraddr.spraddr_pidm%TYPE,
                     p_atyp_code in spraddr.spraddr_atyp_code%TYPE,
                     p_seqno     in spraddr.spraddr_seqno%TYPE);

end csug_api_address;
/
n spraddr.spraddr_pidm%TYPE,
                     p_atyp_code in spraddr.spraddr_atyp_code%TYPE,
                     p_seqno     in spraddr.spraddr_seqno%TYPE);

end csug_api_address;
/
Maybe a buffer isn't being explicitly cleared on end-of-file or something? It's no fun always having to double-check a file after editing it.
 
Back
Top