diff options
author | dd <dd@FreeBSD.org> | 2002-07-10 04:03:33 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2002-07-10 04:03:33 +0000 |
commit | d18ad3c4321cfe7cad9b3b08186e75908fbb6f2f (patch) | |
tree | 3651ff5b73dcb2a0c5689f12fe237ffd01644f13 /usr.bin/lock | |
parent | 84e2792bd8704eef15c4785931d0516b4b8418ec (diff) | |
download | FreeBSD-src-d18ad3c4321cfe7cad9b3b08186e75908fbb6f2f.zip FreeBSD-src-d18ad3c4321cfe7cad9b3b08186e75908fbb6f2f.tar.gz |
Fix indentation: Don't use space where tabs will do; specifically,
don't use spaces at the beginning of a line where tabs are normally
used (the worst thing was that half of this file was right (tabs) and
half was wrong (spaces), making for painful reading).
Reviewed by: /sbin/md5, diff -b
Diffstat (limited to 'usr.bin/lock')
-rw-r--r-- | usr.bin/lock/lock.c | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/usr.bin/lock/lock.c b/usr.bin/lock/lock.c index a8eaf6f..a85b605 100644 --- a/usr.bin/lock/lock.c +++ b/usr.bin/lock/lock.c @@ -104,8 +104,8 @@ main(argc, argv) sectimeout = TIMEOUT; mypw = NULL; usemine = 0; - no_timeout = 0; - while ((ch = getopt(argc, argv, "npt:")) != -1) + no_timeout = 0; + while ((ch = getopt(argc, argv, "npt:")) != -1) switch((char)ch) { case 't': if ((sectimeout = atoi(optarg)) <= 0) @@ -117,13 +117,13 @@ main(argc, argv) errx(1, "unknown uid %d", getuid()); mypw = strdup(pw->pw_passwd); break; - case 'n': - no_timeout = 1; - break; + case 'n': + no_timeout = 1; + break; case '?': default: usage(); - } + } timeout.tv_sec = sectimeout * 60; setuid(getuid()); /* discard privs */ @@ -175,18 +175,18 @@ main(argc, argv) ntimer.it_interval = zerotime; ntimer.it_value = timeout; - if (!no_timeout) - setitimer(ITIMER_REAL, &ntimer, &otimer); + if (!no_timeout) + setitimer(ITIMER_REAL, &ntimer, &otimer); /* header info */ - if (no_timeout) { + if (no_timeout) { (void)printf("lock: %s on %s. no timeout\ntime now is %.20s%s%s", - ttynam, hostname, ap, tzn, ap + 19); - } else { + ttynam, hostname, ap, tzn, ap + 19); + } else { (void)printf("lock: %s on %s. timeout in %d minutes\ntime now is %.20s%s%s", ttynam, hostname, sectimeout, ap, tzn, ap + 19); - } - failures = 0; + } + failures = 0; for (;;) { (void)printf("Key: "); @@ -212,8 +212,8 @@ main(argc, argv) sleep(1); /* to discourage guessing */ } if (getuid() == 0) - syslog(LOG_NOTICE, "ROOT UNLOCK ON hostname %s port %s", - hostname, ttynam); + syslog(LOG_NOTICE, "ROOT UNLOCK ON hostname %s port %s", + hostname, ttynam); quit(0); return(0); /* not reached */ } @@ -231,16 +231,16 @@ hi(int signo __unused) { struct timeval timval; - if (!gettimeofday(&timval, (struct timezone *)NULL)) { - (void)printf("lock: type in the unlock key. "); - if (no_timeout) { - (void)putchar('\n'); - } else { - (void)printf("timeout in %ld:%ld minutes\n", - (nexttime - timval.tv_sec) / 60, - (nexttime - timval.tv_sec) % 60); - } - } + if (!gettimeofday(&timval, (struct timezone *)NULL)) { + (void)printf("lock: type in the unlock key. "); + if (no_timeout) { + (void)putchar('\n'); + } else { + (void)printf("timeout in %ld:%ld minutes\n", + (nexttime - timval.tv_sec) / 60, + (nexttime - timval.tv_sec) % 60); + } + } } void @@ -254,9 +254,9 @@ quit(int signo __unused) void bye(int signo __unused) { - if (!no_timeout) { - (void)ioctl(0, TIOCSETP, &tty); - (void)printf("lock: timeout\n"); - exit(1); - } + if (!no_timeout) { + (void)ioctl(0, TIOCSETP, &tty); + (void)printf("lock: timeout\n"); + exit(1); + } } |