mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
basic/glob-util: do not use names with "_" prefix
Names starting with _ or __ are reserved by the standard, better to avoid them.
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
#include "path-util.h"
|
||||
#include "strv.h"
|
||||
|
||||
static void _closedir(void* v) {
|
||||
static void closedir_wrapper(void* v) {
|
||||
(void) closedir(v);
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ int safe_glob(const char *path, int flags, glob_t *pglob) {
|
||||
assert(!(flags & GLOB_ALTDIRFUNC));
|
||||
|
||||
if (!pglob->gl_closedir)
|
||||
pglob->gl_closedir = _closedir;
|
||||
pglob->gl_closedir = closedir_wrapper;
|
||||
if (!pglob->gl_readdir)
|
||||
pglob->gl_readdir = (struct dirent *(*)(void *)) readdir_no_dot;
|
||||
if (!pglob->gl_opendir)
|
||||
|
||||
@@ -49,7 +49,7 @@ static void test_glob_exists(void) {
|
||||
assert_se(r == 0);
|
||||
}
|
||||
|
||||
static void _closedir(void* v) {
|
||||
static void closedir_wrapper(void* v) {
|
||||
(void) closedir(v);
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@ static void test_glob_no_dot(void) {
|
||||
const char *fn;
|
||||
|
||||
_cleanup_globfree_ glob_t g = {
|
||||
.gl_closedir = _closedir,
|
||||
.gl_closedir = closedir_wrapper,
|
||||
.gl_readdir = (struct dirent *(*)(void *)) readdir_no_dot,
|
||||
.gl_opendir = (void *(*)(const char *)) opendir,
|
||||
.gl_lstat = lstat,
|
||||
|
||||
Reference in New Issue
Block a user