From 973582bde34f0e261b4a055960696134d78907e1 Mon Sep 17 00:00:00 2001 From: Thomas Oster <thomas.oster@rwth-aachen.de> Date: Thu, 29 Dec 2011 20:22:30 +0100 Subject: [PATCH] file ext --- src/com/t_oster/liblasercut/drivers/LaosCutter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/t_oster/liblasercut/drivers/LaosCutter.java b/src/com/t_oster/liblasercut/drivers/LaosCutter.java index 7a650fa..a8ef311 100644 --- a/src/com/t_oster/liblasercut/drivers/LaosCutter.java +++ b/src/com/t_oster/liblasercut/drivers/LaosCutter.java @@ -559,7 +559,7 @@ public class LaosCutter extends LaserCutter TFTPClient tftp = new TFTPClient(); tftp.setDefaultTimeout(60000); tftp.open(this.getPort()); - tftp.sendFile(job.getName(), TFTP.ASCII_MODE, new ByteArrayInputStream(buffer.toByteArray()), this.getHostname()); + tftp.sendFile(job.getName()+".lgc", TFTP.ASCII_MODE, new ByteArrayInputStream(buffer.toByteArray()), this.getHostname()); } } private List<Integer> resolutions; -- GitLab