--- motion-3.2.11.1/netcam.c	2008-09-22 01:20:58.000000000 +0200
+++ motion-3.2.11.1.new/netcam.c	2009-10-23 01:48:21.000000000 +0200
@@ -1270,6 +1270,19 @@
 
     netcam->receiving->image_time = curtime;
 
+
+	/*
+	** Quick-n-dirty mode: Skip unsignificant(?) bytes
+	** for Conceptronic C54Netcam2
+	*/
+	if (netcam->receiving->used > 28)
+	{
+		memmove(netcam->receiving->ptr, netcam->receiving->ptr + 28,
+				netcam->receiving->used - 28);
+		netcam->receiving->used -= 28;
+	}
+
+
     /*
      * Calculate our "running average" time for this netcam's
      * frame transmissions (except for the first time).
