mirror of https://github.com/hak5/openwrt.git
parent
f26b153836
commit
30992cceeb
|
@ -2268,7 +2268,10 @@ void zconf_nextfile(const char *name)
|
||||||
struct buffer *buf;
|
struct buffer *buf;
|
||||||
|
|
||||||
retval = glob(name, GLOB_ERR | GLOB_MARK, NULL, &files);
|
retval = glob(name, GLOB_ERR | GLOB_MARK, NULL, &files);
|
||||||
if (retval == GLOB_NOSPACE || retval == GLOB_ABORTED || retval == GLOB_NOMATCH) {
|
if (retval == GLOB_NOMATCH)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (retval == GLOB_NOSPACE || retval == GLOB_ABORTED) {
|
||||||
printf("%s:%d: glob failed: %s \"%s\"\n", zconf_curname(), zconf_lineno(),
|
printf("%s:%d: glob failed: %s \"%s\"\n", zconf_curname(), zconf_lineno(),
|
||||||
retval == GLOB_NOSPACE ? "failed to allocate memory" :
|
retval == GLOB_NOSPACE ? "failed to allocate memory" :
|
||||||
retval == GLOB_ABORTED ? "read error" : "no match",
|
retval == GLOB_ABORTED ? "read error" : "no match",
|
||||||
|
|
|
@ -302,7 +302,10 @@ void zconf_nextfile(const char *name)
|
||||||
struct buffer *buf;
|
struct buffer *buf;
|
||||||
|
|
||||||
retval = glob(name, GLOB_ERR | GLOB_MARK, NULL, &files);
|
retval = glob(name, GLOB_ERR | GLOB_MARK, NULL, &files);
|
||||||
if (retval == GLOB_NOSPACE || retval == GLOB_ABORTED || retval == GLOB_NOMATCH) {
|
if (retval == GLOB_NOMATCH)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (retval == GLOB_NOSPACE || retval == GLOB_ABORTED) {
|
||||||
printf("%s:%d: glob failed: %s \"%s\"\n", zconf_curname(), zconf_lineno(),
|
printf("%s:%d: glob failed: %s \"%s\"\n", zconf_curname(), zconf_lineno(),
|
||||||
retval == GLOB_NOSPACE ? "failed to allocate memory" :
|
retval == GLOB_NOSPACE ? "failed to allocate memory" :
|
||||||
retval == GLOB_ABORTED ? "read error" : "no match",
|
retval == GLOB_ABORTED ? "read error" : "no match",
|
||||||
|
|
Loading…
Reference in New Issue