svn commit: r190352 - stable/7/usr.bin/gprof
David E. O'Brien
obrien at FreeBSD.org
Mon Mar 23 17:46:46 PDT 2009
Author: obrien
Date: Tue Mar 24 00:46:44 2009
New Revision: 190352
URL: http://svn.freebsd.org/changeset/base/190352
Log:
MFC: r187116: If running with "-K" really do not information about symbols
from the a.out argument.
Modified:
stable/7/usr.bin/gprof/gprof.c
Modified: stable/7/usr.bin/gprof/gprof.c
==============================================================================
--- stable/7/usr.bin/gprof/gprof.c Tue Mar 24 00:44:30 2009 (r190351)
+++ stable/7/usr.bin/gprof/gprof.c Tue Mar 24 00:46:44 2009 (r190352)
@@ -165,7 +165,7 @@ main(argc, argv)
* get information from the executable file.
*/
if ((Kflag && kernel_getnfile(a_outname, &defaultEs) == -1) ||
- (elf_getnfile(a_outname, &defaultEs) == -1 &&
+ (!Kflag && elf_getnfile(a_outname, &defaultEs) == -1 &&
aout_getnfile(a_outname, &defaultEs) == -1))
errx(1, "%s: bad format", a_outname);
/*
More information about the svn-src-stable
mailing list