Fix warnings on FreeBSD
[oweals/cde.git] / cde / lib / DtSvc / DtUtil2 / DtGetMessage.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 /* $TOG: DtGetMessage.c /main/10 1998/07/30 12:12:25 mgreess $ */
24 /*
25  * (c) Copyright 1995 Digital Equipment Corporation.
26  * (c) Copyright 1993, 1994, 1995 Hewlett-Packard Company
27  * (c) Copyright 1993, 1994, 1995 International Business Machines Corp.
28  * (c) Copyright 1993, 1994, 1995 Sun Microsystems, Inc.
29  * (c) Copyright 1993, 1994, 1995 Novell, Inc. 
30  * (c) Copyright 1995 FUJITSU LIMITED.
31  * (c) Copyright 1995 Hitachi.
32  */
33 /******************************************************************************
34  *
35  * File Name: DtGetMessage.c
36  *
37  *  Contains the function for getting localized strings.
38  *
39  *****************************************************************************/
40
41 #ifndef NO_MESSAGE_CATALOG
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <nl_types.h>
46 #include "DtSvcLock.h"
47
48 /*****************************************************************************
49  *
50  * Function: Dt11GetMessage
51  *
52  * Parameters:
53  *
54  *   char       *filename -     Filename to open.
55  *
56  *   int        set -           The message catalog set number.
57  *
58  *   int        n -             The message number.
59  *
60  *   char       *s -            The default message if the message is not
61  *                              retrieved from a message catalog.
62  *
63  * Returns: the string for set 'set' and number 'n'.
64  *
65  *****************************************************************************/
66
67 char *
68 Dt11GetMessage(
69         char *filename,
70         int set,
71         int n,
72         char *s)
73 {
74         char *msg;
75         static int first = 1;
76         static nl_catd nlmsg_fd;
77         static char *nlmsg_filename = NULL;
78
79         _DtSvcProcessLock();
80         if ( NULL == nlmsg_filename || 0 != strcmp(nlmsg_filename, filename) )
81         {
82                 nlmsg_fd = catopen(filename, NL_CAT_LOCALE);
83                 if (nlmsg_filename)
84                 {
85                     free(nlmsg_filename);
86                     nlmsg_filename = NULL;
87                 }
88                 nlmsg_filename = strdup(filename);
89         }
90         msg=catgets(nlmsg_fd,set,n,s);
91         _DtSvcProcessUnlock();
92         return (msg);
93 }
94 #endif