ldconfig.c (65f3be91104cb27bbdd1997240edd6024bd95136) | ldconfig.c (1e635e87e3e2e1b5cdf2cbfe9a2a2900c60810a6) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-4-Clause 3 * 4 * Copyright (c) 1993,1995 Paul Kranenburg 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 63 unchanged lines hidden (view full) --- 72 argc--; 73 argv++; 74 } else { 75 break; 76 } 77 } 78 79 if (is_32) | 1/*- 2 * SPDX-License-Identifier: BSD-4-Clause 3 * 4 * Copyright (c) 1993,1995 Paul Kranenburg 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 63 unchanged lines hidden (view full) --- 72 argc--; 73 argv++; 74 } else { 75 break; 76 } 77 } 78 79 if (is_32) |
80 hints_file = _PATH_ELF32_HINTS; | 80 hints_file = __PATH_ELF_HINTS("32"); |
81 else 82 hints_file = _PATH_ELF_HINTS; 83 while((c = getopt(argc, argv, "Rf:imrsv")) != -1) { 84 switch (c) { 85 case 'R': 86 rescan = true; 87 break; 88 case 'f': --- 42 unchanged lines hidden --- | 81 else 82 hints_file = _PATH_ELF_HINTS; 83 while((c = getopt(argc, argv, "Rf:imrsv")) != -1) { 84 switch (c) { 85 case 'R': 86 rescan = true; 87 break; 88 case 'f': --- 42 unchanged lines hidden --- |