diff options
Diffstat (limited to 'lib/thread.c')
| -rw-r--r-- | lib/thread.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/thread.c b/lib/thread.c index ab4764dfb1..ca54a44563 100644 --- a/lib/thread.c +++ b/lib/thread.c @@ -308,8 +308,7 @@ cpu_record_hash_print(struct hash_backet *bucket, struct vty *vty = args[1]; thread_type *filter = args[2]; struct cpu_thread_history *a = bucket->data; - - a = bucket->data; + if ( !(a->types & *filter) ) return; vty_out_cpu_thread_history(vty,a); @@ -417,8 +416,7 @@ cpu_record_hash_clear (struct hash_backet *bucket, { thread_type *filter = args; struct cpu_thread_history *a = bucket->data; - - a = bucket->data; + if ( !(a->types & *filter) ) return; |
