whitespaces
authorderaadt <deraadt@openbsd.org>
Tue, 19 Dec 2023 16:13:22 +0000 (16:13 +0000)
committerderaadt <deraadt@openbsd.org>
Tue, 19 Dec 2023 16:13:22 +0000 (16:13 +0000)
libexec/ld.so/dlfcn.c
libexec/ld.so/library.c
libexec/ld.so/library_mquery.c
libexec/ld.so/loader.c
libexec/ld.so/resolve.h

index 2aee958..9a4bfde 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dlfcn.c,v 1.115 2023/08/15 06:26:34 guenther Exp $ */
+/*     $OpenBSD: dlfcn.c,v 1.116 2023/12/19 16:13:22 deraadt Exp $ */
 
 /*
  * Copyright (c) 1998 Per Fogelstrom, Opsycon AB
@@ -44,7 +44,7 @@ static int _dl_real_close(void *handle);
 static lock_cb *_dl_thread_fnc = NULL;
 static elf_object_t *obj_from_addr(const void *addr);
 
-#define OK_FLAGS       (0 \
+#define OK_FLAGS       (0 \
        | RTLD_TRACE    \
        | RTLD_LAZY     \
        | RTLD_NOW      \
index 34bf47c..b203d4f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: library.c,v 1.92 2023/08/15 06:23:31 guenther Exp $ */
+/*     $OpenBSD: library.c,v 1.93 2023/12/19 16:13:22 deraadt Exp $ */
 
 /*
  * Copyright (c) 2002 Dale Rahn
@@ -316,7 +316,6 @@ _dl_tryload_shlib(const char *libname, int type, int flags, int nodelete)
                        _dl_push_range_size(&mut, phdp->p_vaddr + loff,
                            phdp->p_memsz);
                        break;
-
                default:
                        break;
                }
index 5f7aeb2..74070a8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: library_mquery.c,v 1.72 2023/08/15 06:23:31 guenther Exp $ */
+/*     $OpenBSD: library_mquery.c,v 1.73 2023/12/19 16:13:22 deraadt Exp $ */
 
 /*
  * Copyright (c) 2002 Dale Rahn
@@ -60,7 +60,6 @@ _dl_load_list_free(struct load_list *load_list)
        }
 }
 
-
 void
 _dl_unload_shlib(elf_object_t *object)
 {
@@ -99,7 +98,6 @@ unload:
        }
 }
 
-
 elf_object_t *
 _dl_tryload_shlib(const char *libname, int type, int flags, int nodelete)
 {
index dc7eb6a..9f15530 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: loader.c,v 1.217 2023/12/19 06:27:45 deraadt Exp $ */
+/*     $OpenBSD: loader.c,v 1.218 2023/12/19 16:13:22 deraadt Exp $ */
 
 /*
  * Copyright (c) 1998 Per Fogelstrom, Opsycon AB
@@ -171,7 +171,6 @@ _dl_run_all_dtors(void)
                        }
                }
 
-
                for (node = _dl_objects;
                    node != NULL;
                    node = node->next ) {
@@ -1139,5 +1138,4 @@ _dl_apply_immutable(elf_object_t *object)
                }
 
        }
-
 }
index d32279d..8f3411d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: resolve.h,v 1.105 2023/08/15 06:26:34 guenther Exp $ */
+/*     $OpenBSD: resolve.h,v 1.106 2023/12/19 16:13:22 deraadt Exp $ */
 
 /*
  * Copyright (c) 1998 Per Fogelstrom, Opsycon AB
@@ -73,7 +73,7 @@ typedef struct elf_object elf_object_t;
 struct object_vector {
        int             len;
        int             alloc;
-       elf_object_t    **vec;
+       elf_object_t    **vec;
 };
 void   object_vec_grow(struct object_vector *_vec, int _more);