]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - elf/genrtldtbl.awk
dlfcn: Remove remnants of caller sensitivity from dlinfo
[thirdparty/glibc.git] / elf / genrtldtbl.awk
index 63ada003f6b11f0902d919d8eb6c939647c5c275..0e2a3749018cfee7de55847b348165dc3f3e768f 100644 (file)
@@ -1,4 +1,4 @@
-#! /usr/bin/awk
+#!/usr/bin/awk
 BEGIN {
   FS=":";
   count=0;
@@ -12,7 +12,7 @@ BEGIN {
 END {
   for (i = 0; i < count; ++i) {
     printf ("static struct r_search_path_elem rtld_search_dir%d =\n", i+1);
-    printf ("  { \"%s/\", %d, unknown, 0, nonexisting, ",
+    printf ("  { \"%s/\", %d, unknown, 0, nonexisting, NULL, NULL, ",
            dir[i], length (dir[i]) + 1);
     if (i== 0)
       printf ("NULL };\n");