tree-wide: change initialization to use EBADF instead of EBADFD

Those fds never were, so it's not fair to say that they are in "bad state".
Let's use the shorter and more direct errno.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2022-12-19 13:11:05 +01:00
parent 254d1313ae
commit a5937dcf39
4 changed files with 5 additions and 5 deletions

View File

@@ -381,7 +381,7 @@ int parse_env_file_fd_sentinel(
const char *fname, /* only used for logging */
...) {
_cleanup_close_ int fd_ro = -EBADFD;
_cleanup_close_ int fd_ro = -EBADF;
_cleanup_fclose_ FILE *f = NULL;
va_list ap;
int r;

View File

@@ -183,7 +183,7 @@ static int fd_is_read_only_fs(int fd) {
}
int path_is_read_only_fs(const char *path) {
_cleanup_close_ int fd = -EBADFD;
_cleanup_close_ int fd = -EBADF;
assert(path);

View File

@@ -93,7 +93,7 @@ int locale_read_data(Context *c, sd_bus_message *m) {
}
int vconsole_read_data(Context *c, sd_bus_message *m) {
_cleanup_close_ int fd = -EBADFD;
_cleanup_close_ int fd = -EBADF;
struct stat st;
/* Do not try to re-read the file within single bus operation. */
@@ -130,7 +130,7 @@ int vconsole_read_data(Context *c, sd_bus_message *m) {
}
int x11_read_data(Context *c, sd_bus_message *m) {
_cleanup_close_ int fd = -EBADFD, fd_ro = -EBADFD;
_cleanup_close_ int fd = -EBADF, fd_ro = -EBADF;
_cleanup_fclose_ FILE *f = NULL;
bool in_section = false;
struct stat st;

View File

@@ -55,7 +55,7 @@ static int locale_context_load_proc(LocaleContext *c, LocaleLoadFlag flag) {
}
static int locale_context_load_conf(LocaleContext *c, LocaleLoadFlag flag) {
_cleanup_close_ int fd = -EBADFD;
_cleanup_close_ int fd = -EBADF;
struct stat st;
int r;