# HG changeset patch
# User kvn
# Date 1328923205 28800
# Node ID 38cbdb77b3d1b6a80d83610188bd4f824311ce9f
# Parent  f99a709665754390eb396941016688471c44c27d
7140985: HSDIS does not handle caller options correctly
Summary: Fix typo.
Reviewed-by: jrose, kvn
Contributed-by: Andrew Haley <aph@redhat.com>

diff -r f99a70966575 -r 38cbdb77b3d1 hotspot/src/share/tools/hsdis/hsdis.c
--- a/hotspot/src/share/tools/hsdis/hsdis.c	Fri Feb 10 12:53:43 2012 -0800
+++ b/hotspot/src/share/tools/hsdis/hsdis.c	Fri Feb 10 17:20:05 2012 -0800
@@ -356,7 +356,7 @@
       if (plen > mach_size)  plen = mach_size;
       strncpy(mach_option, p, plen);
       mach_option[plen] = '\0';
-    } else if (plen > 6 && strncmp(p, "hsdis-", 6)) {
+    } else if (plen > 6 && strncmp(p, "hsdis-", 6) == 0) {
       // do not pass these to the next level
     } else {
       /* just copy it; {i386,sparc}-dis.c might like to see it  */