This file is indexed.

/usr/include/nih/errors.h is in libnih-dev 1.0.3-4ubuntu25.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
60
61
62
63
64
65
/* libnih
 *
 * Copyright © 2009 Scott James Remnant <scott@netsplit.com>.
 * Copyright © 2009 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2, as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef NIH_ERRORS_H
#define NIH_ERRORS_H

#include <nih/error.h>

#include <errno.h>


/* Allocated error numbers */
enum {
	/* 0x0000 thru 0xFFFF reserved for errno */
	NIH_ERROR_ERRNO_START = 0x0000L,

	/* 0x10000 thru 0x1FFFF reserved for libnih */
	NIH_ERROR_LIBNIH_START = 0x10000L,

	NIH_CONFIG_EXPECTED_TOKEN,
	NIH_CONFIG_UNEXPECTED_TOKEN,
	NIH_CONFIG_TRAILING_SLASH,
	NIH_CONFIG_UNTERMINATED_QUOTE,
	NIH_CONFIG_UNTERMINATED_BLOCK,
	NIH_CONFIG_UNKNOWN_STANZA,

	NIH_DIR_LOOP_DETECTED,

	/* 0x20000 thru 0x2FFFF reserved for applications */
	NIH_ERROR_APPLICATION_START = 0x20000L,

	/* 0x30000 thru 0x3FFFF reserved for libnih-dbus */
	NIH_ERROR_LIBNIH_DBUS_START = 0x30000L,

	/* 0x80000 upwards for other libraries */
	NIH_ERROR_LIBRARY_START = 0x80000L
};

/* Error strings for defined messages */
#define NIH_CONFIG_EXPECTED_TOKEN_STR      N_("Expected token")
#define NIH_CONFIG_UNEXPECTED_TOKEN_STR    N_("Unexpected token")
#define NIH_CONFIG_TRAILING_SLASH_STR      N_("Trailing slash in file")
#define NIH_CONFIG_UNTERMINATED_QUOTE_STR  N_("Unterminated quoted string")
#define NIH_CONFIG_UNTERMINATED_BLOCK_STR  N_("Unterminated block")
#define NIH_CONFIG_UNKNOWN_STANZA_STR      N_("Unknown stanza")

#define NIH_DIR_LOOP_DETECTED_STR          N_("Directory loop detected")

#endif /* NIH_ERRORS_H */