]> git.pld-linux.org Git - packages/coreutils.git/commitdiff
- updated
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 22 Feb 2009 23:44:07 +0000 (23:44 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    coreutils-getgid.patch -> 1.13
    coreutils-pam.patch -> 1.13
    coreutils-runuser.patch -> 1.8
    coreutils-uname-cpuinfo.patch -> 1.4

coreutils-getgid.patch
coreutils-pam.patch
coreutils-runuser.patch
coreutils-uname-cpuinfo.patch

index 65c87bc591f4ef6ea4baf7ae20e440e69fbfba83..cd8cb0ac51057f29f868dd4591741f5853052c6c 100644 (file)
@@ -112,7 +112,7 @@ diff -Nur coreutils-4.5.3.orig/src/getgid.c coreutils-4.5.3/src/getgid.c
 +#define AUTHORS proper_name ("Artur Frysiak")
 +
 +/* The name by which this program was run. */
-+char *program_name;
++const char *program_name;
 +
 +static struct option const longopts[] =
 +{
@@ -195,14 +195,14 @@ diff -Nur coreutils-4.5.3.orig/src/getgid.c coreutils-4.5.3/src/getgid.c
  src/fmt.c
  src/fold.c
 +src/getgid.c
+ src/getlimits.c
  src/group-list.c
  src/groups.c
- src/head.c
 --- coreutils-6.10/po/pl.po.orig       2008-03-02 02:12:29.526064907 +0100
 +++ coreutils-6.10/po/pl.po    2008-03-02 02:15:20.139787629 +0100
-@@ -3885,6 +3885,15 @@
+@@ -4152,6 +4152,15 @@
  msgid "invalid number of columns: %s"
- msgstr "błędna liczba kolumn: %s"
+ msgstr "b³êdna liczba kolumn: %s"
  
 +#: src/getgid.c:37
 +#, c-format
@@ -210,9 +210,10 @@ diff -Nur coreutils-4.5.3.orig/src/getgid.c coreutils-4.5.3/src/getgid.c
 +"Usage:\n"
 +"\t%s groupname\n"
 +msgstr ""
-+"Składnia:\n"
++"Sk³adnia:\n"
 +"\t%s nazwa-grupy\n"
 +
- #: src/group-list.c:68 src/id.c:313 src/setuidgid.c:186
- #, c-format
- msgid "failed to get groups for user %s"
+ #. This is a proper name. See the gettext manual, section Names.
+ #: src/getlimits.c:29 src/timeout.c:74 src/truncate.c:42
+ msgid "Padraig Brady"
+
index 6290df36ecd3f7bbb5bcbf02300658d2e46dcfc1..c4f3cd5e42087fb8bc99d0a7ce9089ae95bec0fb 100644 (file)
  #define DEFAULT_USER "root"
  
 +#ifndef USE_PAM
- char *crypt ();
+ char *crypt (char const *key, char const *salt);
 +#endif
- char *getusershell ();
- void endusershell ();
- void setusershell ();
+ char *getusershell (void);
+ void endusershell (void);
+ void setusershell (void);
  
  extern char **environ;
  
 +msgid " killed.\n"
 +msgstr " zabito.\n"
 +
- #: src/su.c:385
+ #: src/su.c:382
  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 540f39a10d2aeecdedf047251b5dc5c925207e7f..8027da5f1397439597a2af69ca12245d3db10b2b 100644 (file)
@@ -6,9 +6,9 @@
    od paste pathchk pinky pr printenv printf ptx pwd readlink rm rmdir
 -  runcon seq sha1sum sha224sum sha256sum sha384sum sha512sum shred shuf
 +  runcon runuser seq sha1sum sha224sum sha256sum sha384sum sha512sum shred shuf
-   sleep sort split stat stty su sum sync tac tail tee test touch tr true
-   tsort tty uname unexpand uniq unlink uptime users vdir wc who whoami yes
+   sleep sort split stat stty su sum sync tac tail tee test timeout touch tr
+   true truncate tsort tty uname unexpand uniq unlink uptime users vdir wc who
+   whoami yes
 --- coreutils-6.10/AUTHORS.orig        2008-01-05 23:58:24.000000000 +0100
 +++ coreutils-6.10/AUTHORS     2008-03-02 14:25:23.908022120 +0100
 @@ -64,6 +64,7 @@
  # include <paths.h>
 @@ -150,6 +156,10 @@
  #ifndef USE_PAM
- char *crypt ();
+ char *crypt (char const *key, char const *salt);
  #endif
 +#ifndef CHECKPASSWD
 +#define CHECKPASSWD 1
 +#endif
 +
- char *getusershell ();
- void endusershell ();
- void setusershell ();
+ char *getusershell (void);
+ void endusershell (void);
+ void setusershell (void);
 @@ -157,7 +167,11 @@
  extern char **environ;
  
index ca7aa602d3bd4e24d6bc043cf2e315e00f207dc6..23edca8b8bb217c2f85f313f0096407544e15972 100644 (file)
@@ -7,9 +7,9 @@ diff -urN coreutils-5.2.1-orig/src/uname.c coreutils-5.2.1/src/uname.c
  
 +void __sysinfo_processor_type(char*);
 +
- /* The name this program was run with, for error messages. */
- char *program_name;
+ static struct option const uname_long_options[] =
+ {
+   {"all", no_argument, NULL, 'a'},
 @@ -243,13 +245,9 @@
    if (toprint & PRINT_PROCESSOR)
      {
This page took 0.137989 seconds and 4 git commands to generate.