Print this page
NEX-16818 Add fksmbcl development tool
NEX-17264 SMB client test tp_smbutil_013 fails after NEX-14666
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Matt Barden <matt.barden@nexenta.com>
and: (fix ref leaks)

*** 22,31 **** --- 22,32 ---- # # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # Copyright 2012 Milan Jurik. All rights reserved. + # Copyright 2017 Nexenta Systems, Inc. All rights reserved. # # This is a "lint tail" that removes all the # uninteresting lines from our lint output. # It's nawk because sed doesn't do (a|b).
*** 54,63 **** --- 55,65 ---- # These have uninteresting return values, usually ignored. /: (n|sm)b_ctx_readrcsection .E_FUNC_RET_[A-Z]*_IGNOR/ { next; } /: nls_str_(lower|upper) .E_FUNC_RET_[A-Z]*_IGNOR/ { next; } /: rc_(close|freesect) .E_FUNC_RET_[A-Z]*_IGNOR/ { next; } + /: nsmb_close .E_FUNC_RET_[A-Z]*_IGNOR/ { next; } # Other functions for which we often ignore return values. /: [a-z]*close .E_FUNC_RET_[A-Z]*_IGNOR/ { next; } /: [a-z]*flush .E_FUNC_RET_[A-Z]*_IGNOR/ { next; } /: [a-z]*printf .E_FUNC_RET_[A-Z]*_IGNOR/ { next; }