Fix typo in license headers
[oweals/cde.git] / cde / lib / tt / mini_isam / isapplmw.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*%%  (c) Copyright 1993, 1994 Hewlett-Packard Company                   */
24 /*%%  (c) Copyright 1993, 1994 International Business Machines Corp.     */
25 /*%%  (c) Copyright 1993, 1994 Sun Microsystems, Inc.                    */
26 /*%%  (c) Copyright 1993, 1994 Novell, Inc.                              */
27 /*%%  $XConsortium: isapplmw.c /main/3 1995/10/23 11:35:35 rswiston $                                                    */
28 #ifndef lint
29 static char sccsid[] = "@(#)isapplmw.c 1.5 89/07/17 Copyr 1988 Sun Micro";
30 #endif
31 /*
32  * Copyright (c) 1988 by Sun Microsystems, Inc.
33  */
34
35 /*
36  * isapplmw.c
37  *
38  * Description:
39  *      Write Application magic string
40  */
41
42
43 #include "isam_impl.h"
44 #include <sys/file.h>
45 #include <sys/time.h>
46
47 /*
48  * string = isapplmw(isfd)
49  *
50  * Isapplmw() writes an application specific 'magic string' into ISAM
51  * file. The 'file' program (using /etc/magic) may be used to report
52  * this magic string.
53  *
54  */
55
56 int 
57 _isapplmw(isfd, magicstring)
58     int                 isfd;
59     char                *magicstring;
60 {
61     register Fab        *fab;
62     int                 ret;
63     Fcb                 *fcb;
64     char                cntl_page[CP_NKEYS_OFF];
65
66     /*
67      * Get File Access Block.
68      */
69     if ((fab = _isfd_find(isfd)) == NULL) {
70         _setiserrno2(ENOTOPEN, '9', '0');
71         return (ISERROR);
72     }
73
74     /*
75      * Check that the open mode was ISOUTPUT, or ISINOUT.
76      */
77     if (fab->openmode != OM_OUTPUT && fab->openmode != OM_INOUT) {
78         _setiserrno2(ENOTOPEN, '9', '0');
79         return (ISERROR);
80     }
81
82     /*
83      * Check the length of the magic string
84      */
85     if ((int)strlen(magicstring) > CP_APPLMAGIC_LEN) {
86         _setiserrno2(EBADARG, '9', '0');
87         return (ISERROR);
88     }
89
90     _isam_entryhook();
91
92     /*
93      * Get FCB corresponding to the isfhandle handle.
94      */
95     if ((fcb = _openfcb(&fab->isfhandle, &fab->errcode)) == NULL) {
96         _isam_exithook();
97         return (ISERROR);
98     }
99
100     /* Write the new data */
101     
102     _isseekpg(fcb->datfd, ISCNTLPGOFF);
103     (void)read(fcb->datfd, cntl_page, sizeof(cntl_page));
104     strncpy(cntl_page + CP_APPLMAGIC_OFF, magicstring, CP_APPLMAGIC_LEN);
105     _isseekpg(fcb->datfd, ISCNTLPGOFF);
106     (void)write(fcb->datfd, cntl_page, sizeof(cntl_page));
107
108     _amseterrcode(&fab->errcode, ISOK);
109     _isam_exithook();
110     ret = ISOK;
111
112     _seterr_errcode(&fab->errcode);
113
114     return (ret);                            /* Successful write */
115 }