Subject: CVS commit: src/sys/netsmb
To: None <source-changes@netbsd.org>
From: Krister Walfridsson <kristerw@netbsd.org>
List: source-changes
Date: 03/15/2003 04:54:25
Module Name: src
Committed By: kristerw
Date: Sat Mar 15 02:54:25 UTC 2003
Modified Files:
src/sys/netsmb: smb_subr.h
Log Message:
The implementation of the try/catch functionality uses two gcc extensions
that our lint does not understand.
One of these extensions (local labels) is needed only when using multiple
try/catch blocks within a function, and the comment before these macros
say that they should be used only once per function so that the implementaton
may be portable.
The other extension (taking the address of a label) is not needed at all.
Remove the use of the extensions.
To generate a diff of this commit:
cvs rdiff -r1.8 -r1.9 src/sys/netsmb/smb_subr.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.