Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-projects commit in pax-utils: xfuncs.c
Date: Sat, 31 Jan 2009 18:02:15
Message-Id: E1LTKAX-00084q-Fq@stork.gentoo.org
1 grobian 09/01/31 18:02:13
2
3 Modified: xfuncs.c
4 Log:
5 c&p error
6
7 Revision Changes Path
8 1.5 pax-utils/xfuncs.c
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/pax-utils/xfuncs.c?rev=1.5&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/pax-utils/xfuncs.c?rev=1.5&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/pax-utils/xfuncs.c?r1=1.4&r2=1.5
13
14 Index: xfuncs.c
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-projects/pax-utils/xfuncs.c,v
17 retrieving revision 1.4
18 retrieving revision 1.5
19 diff -u -r1.4 -r1.5
20 --- xfuncs.c 31 Jan 2009 17:58:37 -0000 1.4
21 +++ xfuncs.c 31 Jan 2009 18:02:13 -0000 1.5
22 @@ -1,7 +1,7 @@
23 /*
24 * Copyright 2003-2007 Gentoo Foundation
25 * Distributed under the terms of the GNU General Public License v2
26 - * $Header: /var/cvsroot/gentoo-projects/pax-utils/xfuncs.c,v 1.4 2009/01/31 17:58:37 grobian Exp $
27 + * $Header: /var/cvsroot/gentoo-projects/pax-utils/xfuncs.c,v 1.5 2009/01/31 18:02:13 grobian Exp $
28 *
29 * Copyright 2003-2007 Ned Ludd - <solar@g.o>
30 * Copyright 2004-2007 Mike Frysinger - <vapier@g.o>
31 @@ -38,7 +38,7 @@
32 char *xstrndup(const char *s, const size_t n)
33 {
34 char *ret = strndup(s, n);
35 - if (!ret) err("Could not strdup(): %s", strerror(errno));
36 + if (!ret) err("Could not strndup(): %s", strerror(errno));
37 return ret;
38 }