Files
ccze/fix_capitalization_typo.patch
Ana Guerrero 2b984bf921 - GitHub repository have been removed:
* switch to upstream's archived repository as homepage.
  * do not download tarball from GitHub
- Add directly patches from Debian that aren't applid already,
  they include PCRE2 porting:
  * fix_passing_LDFLAGS_for_ccze-cssdump.patch
  * fix_capitalization_typo.patch
  * fix-national-encoding.patch
  * cross.patch
  * pcre2.patch
  * memory-leak.patch
  * uninitialised-value.patch
- Switch to PCRE2
- Only run updated tests
- Spec cleanup

OBS-URL: https://build.opensuse.org/package/show/utilities/ccze?expand=0&rev=7
2025-03-27 15:30:30 +00:00

17 lines
415 B
Diff

Description: Fix typo in preprocessor directive
Might fix some crashes, too.
Bug-Debian: https://bugs.debian.org/823334
Author: Steven Willis <onlynone@gmail.com>
--- a/src/ccze-compat.c
+++ b/src/ccze-compat.c
@@ -275,7 +275,7 @@
char **valuep)
{
int i = getsubopt (optionp, tokens, valuep);
-#if HAVE_SUBOPTARg
+#if HAVE_SUBOPTARG
if (!*valuep && suboptarg)
*valuep = strdup (suboptarg);
#endif