/*
- * "$Id: usb.c,v 1.18.2.25 2003/07/06 20:20:29 mike Exp $"
+ * "$Id: usb.c,v 1.18.2.26 2003/07/22 18:23:11 mike Exp $"
*
* USB port backend for the Common UNIX Printing System (CUPS).
*
if (length > (sizeof(device_id) - 2))
length = sizeof(device_id) - 2;
- memcpy(device_id, device_id + 2, length);
+ memmove(device_id, device_id + 2, length);
device_id[length] = '\0';
}
else
{
length = (((unsigned)device_id[0] & 255) << 8) +
((unsigned)device_id[1] & 255);
- memcpy(device_id, device_id + 2, length);
+ memmove(device_id, device_id + 2, length);
device_id[length] = '\0';
}
else
/*
- * End of "$Id: usb.c,v 1.18.2.25 2003/07/06 20:20:29 mike Exp $".
+ * End of "$Id: usb.c,v 1.18.2.26 2003/07/22 18:23:11 mike Exp $".
*/
#!/bin/sh
#
-# "$Id: run-stp-tests.sh,v 1.4.2.15 2003/07/20 12:51:55 mike Exp $"
+# "$Id: run-stp-tests.sh,v 1.4.2.16 2003/07/22 18:23:11 mike Exp $"
#
# Perform the complete set of IPP compliance tests specified in the
# CUPS Software Test Plan.
echo "All tests were successful."
fi
+if test "x$valgrind" != x; then
+ echo "Valgrind lof files can be found in /tmp/$user/log."
+fi
+
echo ""
echo "See the following files for details:"
echo ""
echo ""
#
-# End of "$Id: run-stp-tests.sh,v 1.4.2.15 2003/07/20 12:51:55 mike Exp $"
+# End of "$Id: run-stp-tests.sh,v 1.4.2.16 2003/07/22 18:23:11 mike Exp $"
#