[uClibc-cvs] uClibc/ldso/ldso ldso.c,1.73,1.74

Erik Andersen andersen at uclibc.org
Sat Oct 4 17:31:27 UTC 2003


Update of /var/cvs/uClibc/ldso/ldso
In directory winder:/tmp/cvs-serv24322/ldso/ldso

Modified Files:
	ldso.c 
Log Message:
Fix a stupid bug causing 'ldd' output to not contain the full
path to the target library


Index: ldso.c
===================================================================
RCS file: /var/cvs/uClibc/ldso/ldso/ldso.c,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -d -r1.73 -r1.74
--- ldso.c	19 Sep 2003 12:07:22 -0000	1.73
+++ ldso.c	4 Oct 2003 17:31:22 -0000	1.74
@@ -1067,8 +1067,7 @@
 #endif
 #ifdef __LDSO_LDD_SUPPORT__
 					if (_dl_trace_loaded_objects && tpnt1->usage_count==1) {
-						name = _dl_get_last_path_component(tpnt1->libname);
-						_dl_dprintf(1, "\t%s => %s (%x)\n", lpntstr, --name, 
+						_dl_dprintf(1, "\t%s => %s (%x)\n", lpntstr, tpnt1->libname, 
 								(unsigned) tpnt1->loadaddr);
 					}
 #endif




More information about the uClibc-cvs mailing list