From adb77b1ce8a3726f79c9de1793a1f00cfdb5593f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 1 Feb 1998 16:51:24 +0000 Subject: [PATCH] Really do the change. --- elf/rtld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elf/rtld.c b/elf/rtld.c index e2b7e0fd158..6b429821001 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -355,7 +355,7 @@ of this helper program; chances are you did not intend to run this program.\n", containing a '/' are ignored since it is insecure. */ char *list = strdupa (preloadlist); char *p; - while ((p = strsep (&list, " ")) != NULL) + while ((p = strsep (&list, " :")) != NULL) if (! __libc_enable_secure || strchr (p, '/') == NULL) { struct link_map *new_map = _dl_map_object (NULL, p, lt_library, 0); -- 2.47.2