80b3c51c06
- remove upstream patch level patches 0001-bash51-001.patch 0002-bash51-002.patch 0003-bash51-003.patch 0004-bash51-004.patch - renumber remaining patches For details see [1]. [1] http://git.savannah.gnu.org/cgit/bash.git/log Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
41 lines
1.4 KiB
Diff
41 lines
1.4 KiB
Diff
From a60ab1e5e88863acf9b0e9bcaa7919bbf093da05 Mon Sep 17 00:00:00 2001
|
||
From: Peter Seiderer <ps.report@gmx.net>
|
||
Date: Thu, 11 Mar 2021 20:55:52 +0100
|
||
Subject: [PATCH] glob: fix dequote_pathname vs. udequote_pathname
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
Fixes:
|
||
|
||
glob.c:123:28: error: static declaration of ‘udequote_pathname’ follows non-static declaration
|
||
123 | # define dequote_pathname udequote_pathname
|
||
| ^~~~~~~~~~~~~~~~~
|
||
glob.c:125:13: note: in expansion of macro ‘dequote_pathname’
|
||
125 | static void dequote_pathname PARAMS((char *));
|
||
| ^~~~~~~~~~~~~~~~
|
||
glob.c:118:6: note: previous declaration of ‘udequote_pathname’ was here
|
||
118 | void udequote_pathname PARAMS((char *));
|
||
| ^~~~~~~~~~~~~~~~~
|
||
|
||
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
|
||
---
|
||
lib/glob/glob.c | 3 +--
|
||
1 file changed, 1 insertion(+), 2 deletions(-)
|
||
|
||
diff --git a/lib/glob/glob.c b/lib/glob/glob.c
|
||
index eb6277f..c903b15 100644
|
||
--- a/lib/glob/glob.c
|
||
+++ b/lib/glob/glob.c
|
||
@@ -117,6 +117,5 @@ static int mbskipname PARAMS((char *, char *, int));
|
||
#else
|
||
# define dequote_pathname udequote_pathname
|
||
#endif
|
||
-static void dequote_pathname PARAMS((char *));
|
||
static int glob_testdir PARAMS((char *, int));
|
||
static char **glob_dir_to_array PARAMS((char *, char **, int));
|
||
|
||
--
|
||
2.30.1
|
||
|