Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 521004
Collapse All | Expand All

(-)file_not_specified_in_diff (-4 / +4 lines)
Line  Link Here
0
-- shash-0.2.6/src/errors.c
0
++ shash-0.2.6/src/errors.c
Lines 4-10 Link Here
4
4
5
void err_quit(char *errmsg)
5
void err_quit(char *errmsg)
6
{
6
{
7
	fprintf(stderr, errmsg);
7
	fputs(errmsg, stderr);
8
	exit(-1);
8
	exit(-1);
9
}
9
}
10
10
Lines 12-18 Link Here
12
{
12
{
13
13
14
	if (quiet < 1) {
14
	if (quiet < 1) {
15
		fprintf(stderr, errmsg);
15
		fputs(errmsg, stderr);
16
	}
16
	}
17
17
18
}
18
}
Lines 20-25 Link Here
20
void err_crit(char *errmsg)
20
void err_crit(char *errmsg)
21
{
21
{
22
	if (quiet <= 2) {
22
	if (quiet <= 2) {
23
		fprintf(stderr, errmsg);
23
		fputs(errmsg, stderr);
24
	}
24
	}
25
}
25
}

Return to bug 521004