Commit fd91c3b6 authored by Wayne Davison's avatar Wayne Davison

Fix two unused-variable compiler warnings.

parent 15df927a
...@@ -445,14 +445,13 @@ void parse_name_map(char *map, BOOL usernames) ...@@ -445,14 +445,13 @@ void parse_name_map(char *map, BOOL usernames)
{ {
struct idlist **idmap_ptr = usernames ? &uidmap : &gidmap; struct idlist **idmap_ptr = usernames ? &uidmap : &gidmap;
struct idlist **idlist_ptr = usernames ? &uidlist : &gidlist; struct idlist **idlist_ptr = usernames ? &uidlist : &gidlist;
char *colon, *end, *cp = map + strlen(map); char *colon, *cp = map + strlen(map);
union name_or_id noiu; union name_or_id noiu;
id_t id1; id_t id1;
uint16 flags; uint16 flags;
/* Parse the list in reverse, so the order in the struct is right. */ /* Parse the list in reverse, so the order in the struct is right. */
while (1) { while (1) {
end = cp;
while (cp > map && cp[-1] != ',') cp--; while (cp > map && cp[-1] != ',') cp--;
if (!(colon = strchr(cp, ':'))) { if (!(colon = strchr(cp, ':'))) {
rprintf(FERROR, "No colon found in --%smap: %s\n", rprintf(FERROR, "No colon found in --%smap: %s\n",
......
...@@ -51,15 +51,16 @@ static struct poptOption long_options[] = { ...@@ -51,15 +51,16 @@ static struct poptOption long_options[] = {
/* match just at the start of string (anchored tests) */ /* match just at the start of string (anchored tests) */
static void static void
run_test(int line, bool matches, bool same_as_fnmatch, run_test(int line, bool matches,
#ifdef COMPARE_WITH_FNMATCH
bool same_as_fnmatch,
#endif
const char *text, const char *pattern) const char *text, const char *pattern)
{ {
bool matched; bool matched;
#ifdef COMPARE_WITH_FNMATCH #ifdef COMPARE_WITH_FNMATCH
bool fn_matched; bool fn_matched;
int flags = strstr(pattern, "**")? 0 : FNM_PATHNAME; int flags = strstr(pattern, "**")? 0 : FNM_PATHNAME;
#else
same_as_fnmatch = 0; /* Get rid of unused-variable compiler warning. */
#endif #endif
if (explode_mod) { if (explode_mod) {
...@@ -195,7 +196,11 @@ main(int argc, char **argv) ...@@ -195,7 +196,11 @@ main(int argc, char **argv)
while (*++s == ' ' || *s == '\t') {} while (*++s == ' ' || *s == '\t') {}
} }
*end[0] = *end[1] = '\0'; *end[0] = *end[1] = '\0';
run_test(line, flag[0], flag[1], string[0], string[1]); run_test(line, flag[0],
#ifdef COMPARE_WITH_FNMATCH
flag[1],
#endif
string[0], string[1]);
} }
if (!wildmatch_errors) if (!wildmatch_errors)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment