zsh: update to 5.7.1 & native build
[unleashed-userland.git] / components / sccs / patches / 01.sccs-5.07-patch01.patch
blob3b999b6b4ff3c01d2146c0fa01aa03da79769b67
1 http://sourceforge.net/projects/sccs/files/sccs-5.07-patch01/download
2 --- a/sccs/sccs/lib/comobj/src/date_bal.c-orig Do Okt 31 22:38:28 2013
3 +++ b/sccs/sccs/lib/comobj/src/date_bal.c Mo Jan 26 20:12:15 2015
4 @@ -27,14 +27,14 @@
5 * Use is subject to license terms.
6 */
7 /*
8 - * This file contains modifications Copyright 2008-2013 J. Schilling
9 + * This file contains modifications Copyright 2008-2015 J. Schilling
11 - * @(#)date_bal.c 1.10 13/10/31 J. Schilling
12 + * @(#)date_bal.c 1.11 15/01/26 J. Schilling
14 * From Sun: @(#)sccs:lib/comobj/date_ba.c @(#)date_ba.c 1.5 06/12/12
16 #if defined(sun)
17 -#pragma ident "@(#)date_bal.c 1.10 13/10/31 J. Schilling"
18 +#pragma ident "@(#)date_bal.c 1.11 15/01/26 J. Schilling"
19 #endif
20 # include <defines.h>
22 @@ -115,10 +115,12 @@
23 register int n;
25 --p;
26 - if (z < 0)
27 + if (z < 0) {
28 *p++ = '-';
29 - else
30 + z = -z;
31 + } else {
32 *p++ = '+';
33 + }
34 n = z / 60;
35 DO2_(p, n);
36 n = z % 60;