]> git.pld-linux.org Git - packages/coreutils.git/commitdiff
- updated for 8.16 auto/th/coreutils-8_16-1
authorhawk <hawk@pld-linux.org>
Wed, 18 Apr 2012 10:06:16 +0000 (10:06 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    coreutils-fmt-wchars.patch -> 1.10
    coreutils-pam.patch -> 1.17
    coreutils-runuser.patch -> 1.15
    coreutils-split-pam.patch -> 1.2

coreutils-fmt-wchars.patch
coreutils-pam.patch
coreutils-runuser.patch
coreutils-split-pam.patch

index 2bd45598c81f3d028f55527297990472c659231d..83e5a23f8660f2b79114d2faca119f4f0551127a 100644 (file)
@@ -83,11 +83,11 @@ diff -ur coreutils-7.6.org/src/fmt.c coreutils-7.6/src/fmt.c
 +
  /* Extra ctype(3)-style macros.  */
  
--#define isopen(c)     (strchr ("([`'\"", c) != NULL)
+-#define isopen(c)     (strchr ("(['`\"", c) != NULL)
 -#define isclose(c)    (strchr (")]'\"", c) != NULL)
 -#define isperiod(c)   (strchr (".?!", c) != NULL)
 +#define isopen(c)     \
-+  (wcschr (L"([`'\"\u2018\u201A\u201B\u201C\u201E\u201F", c) != NULL)
++  (wcschr (L"(['`\"\u2018\u201A\u201B\u201C\u201E\u201F", c) != NULL)
 +#define isclose(c)    (wcschr (L")]'\"\u2018\u2019\u201C\u201D", c) != NULL)
 +#define isperiod(c)   (wcschr (L".?!", c) != NULL)
  
@@ -589,10 +589,10 @@ diff -ur coreutils-7.6.org/src/fmt.c coreutils-7.6/src/fmt.c
 +            start->line_width = wid;
              }
  
--          /* This is a kludge to keep us from computing `len' as the
+-          /* This is a kludge to keep us from computing 'len' as the
 -             sum of the sentinel length and some non-zero number.
 -             Since the sentinel w->length may be INT_MAX, adding
-+        /* This is a kludge to keep us from computing `wid' as the
++        /* This is a kludge to keep us from computing 'wid' as the
 +           sum of the sentinel width and some non-zero number.
 +           Since the sentinel w->width may be INT_MAX, adding
               to that would give a negative result.  */
index 3f0cf3195b9ac898cf425bcedf907f6818ff3453..6eb3e5da6836f9edf862bbea73061360345cb939 100644 (file)
 +msgid " killed.\n"
 +msgstr " zabito.\n"
 +
- #: src/su.c:373
+ #: src/su.c:372
  msgid ""
  "Change the effective user id and group id to that of USER.\n"
 diff -Nur coreutils-5.2.1.orig/man/es/su.1 coreutils-5.2.1/man/es/su.1
index 978bb079ddda0a4c1692b84b3f78fbb2f5f351ce..033a0584f33b32aeb393f5a452c97e667a65c0f3 100644 (file)
@@ -45,7 +45,7 @@ diff -urNp coreutils-8.7-orig/man/help2man coreutils-8.7/man/help2man
 @@ -109,9 +109,15 @@
  #include "error.h"
  
- /* The official name of this program (e.g., no `g' prefix).  */
+ /* The official name of this program (e.g., no 'g' prefix).  */
 +#ifndef RUNUSER
  #define PROGRAM_NAME "su"
 +#else
index 4d36447c7c412fd46232ccdfeff6b8092b5a26d4..5f6f72ec482d72270605a4673b819ef23ea30c37 100644 (file)
@@ -5,8 +5,8 @@ diff -uNrp -x '*~' coreutils-5.97-orig/src/su.c coreutils-5.97/src/su.c
  
  #include "error.h"
  
--/* The official name of this program (e.g., no `g' prefix).  */
-+/* The official name of this program (e.g., no `g' prefix).
+-/* The official name of this program (e.g., no 'g' prefix).  */
++/* The official name of this program (e.g., no 'g' prefix).
 + * - Add a "-l" to the name passed to PAM if this is a login simulation
 + */
  #ifndef RUNUSER
This page took 0.091413 seconds and 4 git commands to generate.