Browse Source

LOGIN_SETALL did not include LOGIN_SETENV as it should.

OPENBSD_3_7
millert 20 years ago
parent
commit
cab5b7c7b6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/include/login_cap.h

+ 2
- 2
src/include/login_cap.h View File

@ -1,4 +1,4 @@
/* $OpenBSD: login_cap.h,v 1.12 2004/08/09 21:15:08 millert Exp $ */
/* $OpenBSD: login_cap.h,v 1.13 2005/01/28 17:17:22 millert Exp $ */
/*- /*-
* Copyright (c) 1995,1997 Berkeley Software Design, Inc. All rights reserved. * Copyright (c) 1995,1997 Berkeley Software Design, Inc. All rights reserved.
@ -52,7 +52,7 @@
#define LOGIN_SETUMASK 0x0020 /* Set umask */ #define LOGIN_SETUMASK 0x0020 /* Set umask */
#define LOGIN_SETUSER 0x0040 /* Set user */ #define LOGIN_SETUSER 0x0040 /* Set user */
#define LOGIN_SETENV 0x0080 /* Set environment */ #define LOGIN_SETENV 0x0080 /* Set environment */
#define LOGIN_SETALL 0x007f /* Set all. */
#define LOGIN_SETALL 0x00ff /* Set all. */
#define BI_AUTH "authorize" /* Accepted authentication */ #define BI_AUTH "authorize" /* Accepted authentication */
#define BI_REJECT "reject" /* Rejected authentication */ #define BI_REJECT "reject" /* Rejected authentication */


Loading…
Cancel
Save