diff options
author | Gordon Ross <Gordon.Ross@Sun.COM> | 2009-12-19 12:16:19 -0500 |
---|---|---|
committer | Gordon Ross <Gordon.Ross@Sun.COM> | 2009-12-19 12:16:19 -0500 |
commit | a7575d5d9f2fd129609e4945038a976e2da46ed5 (patch) | |
tree | 18b3896677954b6c3c4355e3b7d487f4b0d91ad2 /usr/src/lib/libsmbfs | |
parent | 2e6e901d9406e1a048063c872149376a6bf7cb63 (diff) | |
download | illumos-joyent-a7575d5d9f2fd129609e4945038a976e2da46ed5.tar.gz |
6876185 common I/F for net message build/parse in kernel vs user code (fix unref)
Diffstat (limited to 'usr/src/lib/libsmbfs')
-rw-r--r-- | usr/src/lib/libsmbfs/smb/lgrep.awk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/usr/src/lib/libsmbfs/smb/lgrep.awk b/usr/src/lib/libsmbfs/smb/lgrep.awk index 8f36708df8..f7ae7bd5d1 100644 --- a/usr/src/lib/libsmbfs/smb/lgrep.awk +++ b/usr/src/lib/libsmbfs/smb/lgrep.awk @@ -29,6 +29,14 @@ # It's nawk because sed doesn't do (a|b). # Also comments are easier here. +# There's no lintlib for krb5 yet (CR 6911968) +/: Warning: -lkrb5 not found/ { next; } + +# Kill noise from xti.h with _XOPEN_SOURCE vs not. (CR 6911717) +/: _xti_.* .E_INCONS_ARG_DECL2./ { next; } +/: _xti_.* .E_INCONS_ARG_USED2./ { next; } +/: _xti_.* .E_INCONS_VAL_TYPE_DECL2./ { next; } + # The mb_put/md_get functions are intentionally used both # with and without return value checks. Not a concern. /: mb_put_.* .E_FUNC_RET_[A-Z]*_IGNOR/ { next; } |