subr.c (5e3934b15a2741b2de6b217e77dc9d798d740804) | subr.c (65a4daeaf3247b7a2c16cf59cdea2ce05987a7cc) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1988, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 67 unchanged lines hidden (view full) --- 76 facs |= KTRFAC_USER; 77 break; 78 case 'w': 79 facs |= KTRFAC_CSW; 80 break; 81 case 'y': 82 facs |= KTRFAC_SYSCTL; 83 break; | 1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1988, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 67 unchanged lines hidden (view full) --- 76 facs |= KTRFAC_USER; 77 break; 78 case 'w': 79 facs |= KTRFAC_CSW; 80 break; 81 case 'y': 82 facs |= KTRFAC_SYSCTL; 83 break; |
84 case 'a': 85 facs |= KTRFAC_ARGS; 86 break; 87 case 'e': 88 facs |= KTRFAC_ENVS; 89 break; |
|
84 case '+': 85 facs |= DEF_POINTS; 86 break; 87 default: 88 return (-1); 89 } 90 s++; 91 } --- 31 unchanged lines hidden --- | 90 case '+': 91 facs |= DEF_POINTS; 92 break; 93 default: 94 return (-1); 95 } 96 s++; 97 } --- 31 unchanged lines hidden --- |