~ubuntu-branches/ubuntu/lucid/openssh/lucid

« back to all changes in this revision

Viewing changes to auth-shadow.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2005-10-10 20:10:01 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051010201001-rno2f5bno6e6wo6t
Tags: upstream-4.1p1
ImportĀ upstreamĀ versionĀ 4.1p1

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 */
24
24
 
25
25
#include "includes.h"
26
 
RCSID("$Id: auth-shadow.c,v 1.5 2004/02/21 23:22:05 dtucker Exp $");
 
26
RCSID("$Id: auth-shadow.c,v 1.6 2005/02/16 03:20:06 dtucker Exp $");
27
27
 
28
28
#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
29
29
#include <shadow.h>
32
32
#include "buffer.h"
33
33
#include "log.h"
34
34
 
 
35
#ifdef DAY
 
36
# undef DAY
 
37
#endif
35
38
#define DAY     (24L * 60 * 60) /* 1 day in seconds */
36
39
 
37
40
extern Buffer loginmsg;