reindent-20030715
[openafs.git] / src / login / util_logout.c
1 /*
2  * Copyright (c) 1988 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that the above copyright notice and this paragraph are
7  * duplicated in all such forms and that any documentation,
8  * advertising materials, and other materials related to such
9  * distribution and use acknowledge that the software was developed
10  * by the University of California, Berkeley.  The name of the
11  * University may not be used to endorse or promote products derived
12  * from this software without specific prior written permission.
13  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16  */
17
18 #include <afsconfig.h>
19 #include <afs/param.h>
20
21 RCSID
22     ("$Header$");
23
24 #include <sys/types.h>
25 #include <sys/file.h>
26 #ifdef  AFS_SUN5_ENV
27 #include <fcntl.h>
28 #define L_INCR SEEK_CUR
29 #endif
30 #include <sys/time.h>
31 #include <time.h>
32 #include <utmp.h>
33 #include <stdio.h>
34 #ifdef AIX
35 #include <fcntl.h>
36 #include <unistd.h>
37 #define L_INCR SEEK_CUR
38 #endif
39
40 #define UTMPFILE        "/etc/utmp"
41
42 /* 0 on failure, 1 on success */
43
44 logout(line)
45      register char *line;
46 {
47     register FILE *fp;
48     struct utmp ut;
49     int rval;
50
51     if (!(fp = fopen(UTMPFILE, "r+")))
52         return (0);
53     rval = 0;
54     while (fread((char *)&ut, sizeof(struct utmp), 1, fp) == 1) {
55         if (!ut.ut_name[0] || strncmp(ut.ut_line, line, sizeof(ut.ut_line)))
56             continue;
57         memset(ut.ut_name, 0, sizeof(ut.ut_name));
58 #if     !defined(AIX) && !defined(AFS_SUN5_ENV)
59         memset(ut.ut_host, 0, sizeof(ut.ut_host));
60 #endif /* AIX */
61         (void)time(&ut.ut_time);
62         (void)fseek(fp, (long)-sizeof(struct utmp), L_INCR);
63         (void)fwrite((char *)&ut, sizeof(struct utmp), 1, fp);
64         (void)fseek(fp, (long)0, L_INCR);
65         rval = 1;
66     }
67     (void)fclose(fp);
68     return (rval);
69 }