Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libpam/modules/pam_ssh s/ifndef/ifdef/ for __FreeBSD__



details:   https://anonhg.NetBSD.org/src/rev/d45bdb5dda5a
branches:  trunk
changeset: 572444:d45bdb5dda5a
user:      lukem <lukem%NetBSD.org@localhost>
date:      Mon Jan 03 03:08:40 2005 +0000

description:
s/ifndef/ifdef/  for __FreeBSD__

diffstat:

 lib/libpam/modules/pam_ssh/pam_ssh.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r f8b0adee2923 -r d45bdb5dda5a lib/libpam/modules/pam_ssh/pam_ssh.c
--- a/lib/libpam/modules/pam_ssh/pam_ssh.c      Mon Jan 03 03:07:12 2005 +0000
+++ b/lib/libpam/modules/pam_ssh/pam_ssh.c      Mon Jan 03 03:08:40 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pam_ssh.c,v 1.2 2004/12/12 08:18:47 christos Exp $     */
+/*     $NetBSD: pam_ssh.c,v 1.3 2005/01/03 03:08:40 lukem Exp $        */
 
 /*-
  * Copyright (c) 2003 Networks Associates Technology, Inc.
@@ -35,10 +35,10 @@
  */
 
 #include <sys/cdefs.h>
-#ifndef __FreeBSD__
+#ifdef __FreeBSD__
 __FBSDID("$FreeBSD: src/lib/libpam/modules/pam_ssh/pam_ssh.c,v 1.40 2004/02/10 10:13:21 des Exp $");
 #else
-__RCSID("$NetBSD: pam_ssh.c,v 1.2 2004/12/12 08:18:47 christos Exp $");
+__RCSID("$NetBSD: pam_ssh.c,v 1.3 2005/01/03 03:08:40 lukem Exp $");
 #endif
 
 #include <sys/param.h>



Home | Main Index | Thread Index | Old Index