Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Apr 2002 14:30:09 -0700 (PDT)
From:      Dag-Erling Smorgrav <des@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 9853 for review
Message-ID:  <200204162130.g3GLU9t51864@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=9853

Change 9853 by des@des.at.des.thinksec.com on 2002/04/16 14:29:40

	Fix braino in the gcc version of the openpam_log() macro.
	
	Sponsored by:	DARPA, NAI Labs

Affected files ...

... //depot/projects/openpam/include/security/openpam.h#18 edit

Differences ...

==== //depot/projects/openpam/include/security/openpam.h#18 (text+ko) ====

@@ -31,7 +31,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $P4: //depot/projects/openpam/include/security/openpam.h#17 $
+ * $P4: //depot/projects/openpam/include/security/openpam.h#18 $
  */
 
 #ifndef _SECURITY_OPENPAM_H_INCLUDED
@@ -142,7 +142,7 @@
 	_openpam_log((lvl), __func__, fmt, __VA_ARGS__)
 #elif defined(__GNUC__) && (__GNUC__ >= 2) && (__GNUC_MINOR__ >= 95)
 #define openpam_log(lvl, fmt...) \
-	_openpam_log((lvl), __func__, fmt, ##fmt)
+	_openpam_log((lvl), __func__, ##fmt)
 #elif defined(__GNUC__) && defined(__FUNCTION__)
 #define openpam_log(lvl, fmt...) \
 	_openpam_log((lvl), __FUNCTION__, ##fmt)

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200204162130.g3GLU9t51864>