]> git.pld-linux.org Git - packages/cups.git/blob - cups-options.patch
Release 4 (by relup.sh)
[packages/cups.git] / cups-options.patch
1 diff -urNp -x '*.orig' cups-2.3.3.org/cups/options.c cups-2.3.3/cups/options.c
2 --- cups-2.3.3.org/cups/options.c       2020-04-27 20:04:29.000000000 +0200
3 +++ cups-2.3.3/cups/options.c   2021-04-20 22:45:48.336492339 +0200
4 @@ -326,6 +326,13 @@ cupsParseOptions(
5    * Loop through the string...
6    */
7  
8 +  /*
9 +   * skip leading spaces
10 +   */
11 +
12 +  while (isspace(*ptr))
13 +    ++ptr;
14 +
15    while (*ptr != '\0')
16    {
17     /*
This page took 0.06608 seconds and 3 git commands to generate.