diff options
Diffstat (limited to '')
-rw-r--r-- | src/security.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/security.c b/src/security.c index 626110a..3abd7b4 100644 --- a/src/security.c +++ b/src/security.c @@ -113,13 +113,13 @@ void chown_tty(uid_t owner, gid_t group, char with_fail) if (ioctl(STDIN_FILENO, VT_GETSTATE, &vtstat) == 0) { int n = vtstat.v_active; - char _vcs[VCS_VCSA_LEN + 6]; - char _vcsa[VCS_VCSA_LEN + 6]; + char _vcs[VCS_LEN + 6]; + char _vcsa[VCSA_LEN + 6]; char* vcs = _vcs; char* vcsa = _vcsa; - vcs += VCS_VCSA_LEN + 6; - vcsa += VCS_VCSA_LEN + 6; + vcs += VCS_LEN + 6; + vcsa += VCSA_LEN + 6; if (n) { |