- Apr 20, 2023
-
-
Zdenek Dohnal authored
Fixes #658
-
- Apr 13, 2023
-
-
Michael R Sweet authored
-
Zdenek Dohnal authored
This results into having only one Subject Alternative Name extension, which fixes SEC_ERROR_EXTENSION_VALUE_INVALID in Firefox.
-
- Mar 27, 2023
-
-
Zdenek Dohnal authored
-
- Mar 04, 2023
-
-
Michael R Sweet authored
cupsMakeServerCredentials should return 0 on failure, 1 on success
-
Michael R Sweet authored
Prefer atof over strtod
-
Rose authored
Currently, it returns -1 on error it seems, which is not how the function is documented to work.
-
Rose authored
This is much simpler to call over strtod and is supported on more older platforms.
-
- Mar 03, 2023
-
-
Michael R Sweet authored
Include media-type and media-source in media-col-default
-
zdohnal authored
ippeveprinter.c: Check the created `path` string instead of `command`
-
- Mar 02, 2023
-
-
Bryan Cain authored
Otherwise, there's no way for clients to know the default media type or source unless they're using the legacy PPD API.
-
Zdenek Dohnal authored
If a user passes the command by only its name, we have to check the path string we created instead of command string alone.
-
- Mar 01, 2023
-
-
zdohnal authored
cups/http-addr.c: Set listen backlog size to INT_MAX
-
Vasilis Liaskovitis authored
Use a listen queue size of INT_MAX, which should default to the maximum supported queue size on the system. This avoids the problem of the listening backlog queue getting full when there are too many requests at the same time. The problem was observed with the previous backlog size (128) by customers when submitting large batches of print jobs, resulting in some jobs getting lost. Signed-off-by: Vasilis Liaskovitis <vliaskovitis@suse.com>
-
Michael R Sweet authored
Bump microsoft/setup-msbuild from 1.1.3 to 1.3.1
-
dependabot[bot] authored
Bumps [microsoft/setup-msbuild](https://github.com/microsoft/setup-msbuild) from 1.1.3 to 1.3.1. - [Release notes](https://github.com/microsoft/setup-msbuild/releases) - [Changelog](https://github.com/microsoft/setup-msbuild/blob/main/building-release.md) - [Commits](https://github.com/microsoft/setup-msbuild/compare/v1.1.3...v1.3.1 ) --- updated-dependencies: - dependency-name: microsoft/setup-msbuild dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
-
- Feb 19, 2023
-
-
Michael R Sweet authored
Resolve macOS build errors
-
- Feb 17, 2023
-
-
Rose authored
Make the err variable actually used and make secCert not const. Also fixup httpSaveCredentials behavior to better match the changes made to err.
-
- Feb 15, 2023
-
-
Till Kamppeter authored
When a PPD for a driverless printer is generated by the _ppdCreateFromIPP2() function and the get-printer-attributes IPP response gives "print-color-mode-default=auto" the PPD's default setting for "ColorModel" is always "RGB", even on monochrome printers, which makes printing fail on most devices. Now we ignore the "print-color-mode-default" if set to "auto" and proceed as if no default was given, finding the default by selecting the most desirable of the existing "ColorModel" choices.
-
- Feb 03, 2023
-
-
Michael R Sweet authored
Remove redundant checks
-
Rose authored
These checks just do extra work and have no effect My justification: https://godbolt.org/z/bP6GzzMza
-
- Feb 01, 2023
-
-
Michael R Sweet authored
Fix UB in cups_raster_read debug message
-
Benjamin Gordon authored
The first time `cups_raster_read` is called, both `r->bufptr` and `r->buffer` are NULL. The calculation here then ends up looking like adding a size_t to a NULL pointer, which triggers the ubsan detector. Since we just want an offset, cast the pointer difference to ssize_t like the code already does a few lines below.
-
- Jan 31, 2023
-
-
Michael R Sweet authored
-
- Jan 30, 2023
-
-
Michael R Sweet authored
Fix bounds of description
-
Rose authored
description is 256. However, buffer is 258, which is a problem because we are possibly exceeding the bounds of description when we access description[2 * i + 2] as i approaches 256. I refactored the code to make it more obvious that this should be avoided.
-
Zdenek Dohnal authored
-
Zdenek Dohnal authored
- adjust bug template to mention CUPS version, an application instead of browser, precise OS name and version and mention REPORTING_ISSUES document - fix a typo in REPORTING_ISSUES document - mention REPORTING_ISSUES document README
-
zdohnal authored
REPORTING_ISSUES.md: Initial page
-
Till Kamppeter authored
This adds a selection screen when you click the button to report a new issue on the "Issues" page. The selection screen does not only create one entry for each issue template but also one extra entry for security (private) bug reports. The latter is especially important as otherwise the entrance point for a security bug report is hidden on the security page.
-
Michael R Sweet authored
Fix-up ORs
-
Michael R Sweet authored
Fix backchannel status checking bugs
-
- Jan 29, 2023
-
-
Rose authored
Missed a few spots
-
Rose authored
Checking for merely (status < 0) is a bug because the check for timeout is deliberate. Note that you have an if (timeout < 0) at the beginning So if the timeout is set to a value, it should check for that value. Co-Authored-By: aaaaaa123456789 <aaaaaa123456789@acidch.at>
-
Michael R Sweet authored
PPD for driverless IPP: Poll "media-col-database" separately if needed
-
Till Kamppeter authored
-
- Jan 27, 2023
-
-
Zdenek Dohnal authored
-
- Jan 25, 2023
-
-
Michael R Sweet authored
Use bitwise OR instead of addition
-
- Jan 23, 2023
-
-
Rose authored
-
- Jan 22, 2023
-
-
Till Kamppeter authored
There is a new API of snapd-glib used for libsoup3 The original API, snapd-glib, is still supported.
-