1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997-2006
* Oracle Corporation. All rights reserved.
*
* $Id: os_getenv.c,v 12.5 2006/08/31 20:30:55 bostic Exp $
*/
#include "db_config.h"
#include "db_int.h"
/*
* __os_getenv --
* Retrieve an environment variable.
*
* PUBLIC: int __os_getenv __P((DB_ENV *, const char *, char **, size_t));
*/
int
__os_getenv(dbenv, name, bpp, buflen)
DB_ENV *dbenv;
const char *name;
char **bpp;
size_t buflen;
{
/*
* If we have getenv, there's a value and the buffer is large enough:
* copy value into the pointer, return 0
* If we have getenv, there's a value and the buffer is too short:
* set pointer to NULL, return EINVAL
* If we have getenv and there's no value:
* set pointer to NULL, return 0
* If we don't have getenv:
* set pointer to NULL, return 0
*/
#ifdef HAVE_GETENV
char *p;
if ((p = getenv(name)) != NULL) {
if (strlen(p) < buflen) {
(void)strcpy(*bpp, p);
return (0);
}
*bpp = NULL;
__db_errx(dbenv,
"%s: buffer too small to hold environment variable %s",
name, p);
return (EINVAL);
}
#else
COMPQUIET(dbenv, NULL);
COMPQUIET(name, NULL);
COMPQUIET(buflen, 0);
#endif
*bpp = NULL;
return (0);
}
|