head	1.4;
access;
symbols
	RELEASE_7_3_0:1.3
	RELEASE_8_0_0:1.3
	old_RELEASE_7_2_0:1.2
	old_RELEASE_7_1_0:1.2
	old_RELEASE_6_4_0:1.2
	old_RELEASE_5_EOL:1.2
	old_RELEASE_7_0_0:1.2
	old_RELEASE_6_3_0:1.2
	old_PRE_XORG_7:1.2
	old_RELEASE_4_EOL:1.2
	old_RELEASE_6_2_0:1.2
	old_RELEASE_6_1_0:1.2
	old_RELEASE_5_5_0:1.2
	old_RELEASE_6_0_0:1.2
	old_RELEASE_5_4_0:1.2
	old_RELEASE_4_11_0:1.2
	old_RELEASE_5_3_0:1.2
	old_RELEASE_4_10_0:1.2
	old_RELEASE_5_2_1:1.2
	old_RELEASE_5_2_0:1.2
	old_RELEASE_4_9_0:1.2
	old_RELEASE_5_1_0:1.2
	old_RELEASE_4_8_0:1.2
	old_RELEASE_5_0_0:1.2
	old_RELEASE_4_7_0:1.2
	old_RELEASE_4_6_2:1.2
	old_RELEASE_4_6_1:1.2
	old_RELEASE_4_6_0:1.2
	old_RELEASE_5_0_DP1:1.2
	old_RELEASE_4_5_0:1.2
	old_RELEASE_4_4_0:1.2
	old_RELEASE_4_3_0:1.2
	old_RELEASE_4_2_0:1.2
	old_RELEASE_4_1_1:1.2
	old_RELEASE_4_1_0:1.2
	old_krb5_1_2:1.2
	old_krb5_1_1_1:1.2
	old_RELEASE_3_5_0:1.2
	old_RELEASE_4_0_0:1.2
	old_RELEASE_3_4_0:1.2
	old_RELEASE_3_3_0:1.1
	old_krb5_1_0_6:1.1
	old_krb5_1_0_5:1.1
	old_RELEASE_3_2_0:1.1
	old_RELEASE_3_1_0:1.1
	old_RELEASE_2_2_8:1.1
	old_RELEASE_3_0_0:1.1
	old_RELEASE_2_2_7:1.1;
locks; strict;
comment	@# @;


1.4
date	2010.04.26.03.25.33;	author cy;	state dead;
branches;
next	1.3;

1.3
date	2009.06.09.04.16.35;	author cy;	state Exp;
branches;
next	1.2;

1.2
date	99.10.04.14.32.24;	author nectar;	state Exp;
branches;
next	1.1;

1.1
date	98.07.06.18.58.50;	author nectar;	state Exp;
branches;
next	;


desc
@@


1.4
log
@Remove krb5-17, which has been merged into the krb5 port.
@
text
@*** appl/gssftp/ftpd/logwtmp.c.ORIG	Fri Feb  6 19:41:25 1998
--- appl/gssftp/ftpd/logwtmp.c	Tue Jun 30 19:46:01 1998
***************
*** 66,72 ****
  	struct stat buf;
  	time_t time();
  
! 	if (fd < 0 && (fd = open(WTMPFILE, O_WRONLY|O_APPEND, 0)) < 0)
  		return;
  	if (fstat(fd, &buf) == 0) {
  		(void)strncpy(ut.ut_line, line, sizeof(ut.ut_line));
--- 66,72 ----
  	struct stat buf;
  	time_t time();
  
! 	if (fd < 0 && (fd = open(WTMP_FILE, O_WRONLY|O_APPEND, 0)) < 0)
  		return;
  	if (fstat(fd, &buf) == 0) {
  		(void)strncpy(ut.ut_line, line, sizeof(ut.ut_line));
@


1.3
log
@This forced commit documents the repocopy of security/krb5 to security/krb5-17
in preparation for inclusion of KRB5 1.7 in the ports collection.

PR:		135290
@
text
@@


1.2
log
@Update 1.0.6 -> 1.1
@
text
@@


1.1
log
@Additional patches (already committed to krb5-current):
* Paths corrected in applications
* ftpd now logs to facility LOG_FTP
* use openpty to obtain pseudo-terminal
* corrected detection of TCL libraries
* fix a forwarding bug
* add -m flag to ksu (preserve USER, HOME, SHELL)
* cosmetic bug fix to telnet.c
Submitted by:	Dima Ruban <dima@@best.net>
@
text
@a3 27
*** 44,55 ****
  #include <unistd.h>
  #include <string.h>
  
! #ifdef WTMP_FILE
! #define WTMPFILE WTMP_FILE
  #endif
  
! #ifndef WTMPFILE
! #define	WTMPFILE	"/usr/adm/wtmp"
  #endif
  
  static int fd = -1;
--- 44,55 ----
  #include <unistd.h>
  #include <string.h>
  
! #if !defined(WTMP_FILE) && defined(_PATH_WTMP)
! #define WTMP_FILE _PATH_WTMP
  #endif
  
! #ifndef WTMP_FILE
! #define	WTMP_FILE "/usr/adm/wtmp"
  #endif
  
  static int fd = -1;
***************
@

