Fix bug in run-stp-tests.sh script.
}
if (*copyarg == '{')
- ptr = copyarg + 1;
+ ptr = copyarg + 1;
else
ptr = copyarg;
// End after the closing brace...
if (*ptr == '}' && *copyarg == '{')
{
- ptr ++;
+ *ptr++ = '\0';
break;
}
// Normal space-delimited string...
while (*ptr && !_cups_isspace(*ptr))
{
+ if (*ptr == '}' && *copyarg == '{')
+ {
+ *ptr++ = '\0';
+ break;
+ }
+
if (*ptr == '\\' && ptr[1])
_cups_strcpy(ptr, ptr + 1);
# Perform the complete set of IPP compliance tests specified in the
# CUPS Software Test Plan.
#
-# Copyright © 2020-2023 by OpenPrinting
+# Copyright © 2020-2024 by OpenPrinting
# Copyright © 2007-2021 by Apple Inc.
# Copyright © 1997-2007 by Easy Software Products, all rights reserved.
#
umask 022
-#
-# Make the IPP test program...
-#
-
-make
-
#
# Solaris has a non-POSIX grep in /bin...
#