Index: /applications/editors/josm/plugins/livegps/livegps/LiveGpsLayer.java
===================================================================
--- /applications/editors/josm/plugins/livegps/livegps/LiveGpsLayer.java	(revision 3256)
+++ /applications/editors/josm/plugins/livegps/livegps/LiveGpsLayer.java	(revision 3257)
@@ -6,4 +6,5 @@
 import java.beans.PropertyChangeEvent;
 import java.beans.PropertyChangeListener;
+import java.text.SimpleDateFormat;
 import java.util.ArrayList;
 import java.util.Collection;
@@ -25,4 +26,5 @@
 	//JLabel lbl;
 	boolean autocenter;
+	private SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS");
 	
 	public LiveGpsLayer(Collection<Collection<GpsPoint>> data)
@@ -51,5 +53,5 @@
 			
 		lastPos = thisPos;
-		lastPoint = new GpsPoint (thisPos, new Date().toString());
+		lastPoint = new GpsPoint (thisPos, dateFormat.format(new Date()));
 		// synchronize when adding data, as otherwise the autosave action
 		// needs concurrent access and this results in an exception!
