SOURCES: coreutils-getgid.patch, coreutils-pam.patch, coreutils-runuser.pat...

arekm arekm at pld-linux.org
Mon Feb 23 00:44:13 CET 2009


Author: arekm                        Date: Sun Feb 22 23:44:12 2009 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- updated

---- Files affected:
SOURCES:
   coreutils-getgid.patch (1.12 -> 1.13) , coreutils-pam.patch (1.12 -> 1.13) , coreutils-runuser.patch (1.7 -> 1.8) , coreutils-uname-cpuinfo.patch (1.3 -> 1.4) 

---- Diffs:

================================================================
Index: SOURCES/coreutils-getgid.patch
diff -u SOURCES/coreutils-getgid.patch:1.12 SOURCES/coreutils-getgid.patch:1.13
--- SOURCES/coreutils-getgid.patch:1.12	Fri Oct 17 09:47:20 2008
+++ SOURCES/coreutils-getgid.patch	Mon Feb 23 00:44:05 2009
@@ -112,7 +112,7 @@
 +#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 @@
  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 @@
 +"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: SOURCES/coreutils-pam.patch
diff -u SOURCES/coreutils-pam.patch:1.12 SOURCES/coreutils-pam.patch:1.13
--- SOURCES/coreutils-pam.patch:1.12	Sat Aug  9 23:42:16 2008
+++ SOURCES/coreutils-pam.patch	Mon Feb 23 00:44:06 2009
@@ -49,11 +49,11 @@
  #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;
  
@@ -473,7 +473,7 @@
 +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: SOURCES/coreutils-runuser.patch
diff -u SOURCES/coreutils-runuser.patch:1.7 SOURCES/coreutils-runuser.patch:1.8
--- SOURCES/coreutils-runuser.patch:1.7	Sat Aug  9 23:42:17 2008
+++ SOURCES/coreutils-runuser.patch	Mon Feb 23 00:44:07 2009
@@ -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 @@
@@ -39,15 +39,15 @@
  # 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: SOURCES/coreutils-uname-cpuinfo.patch
diff -u SOURCES/coreutils-uname-cpuinfo.patch:1.3 SOURCES/coreutils-uname-cpuinfo.patch:1.4
--- SOURCES/coreutils-uname-cpuinfo.patch:1.3	Sat Jan 15 19:26:41 2005
+++ SOURCES/coreutils-uname-cpuinfo.patch	Mon Feb 23 00:44:07 2009
@@ -7,9 +7,9 @@
  
 +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)
      {
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/coreutils-getgid.patch?r1=1.12&r2=1.13&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/coreutils-pam.patch?r1=1.12&r2=1.13&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/coreutils-runuser.patch?r1=1.7&r2=1.8&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/coreutils-uname-cpuinfo.patch?r1=1.3&r2=1.4&f=u



More information about the pld-cvs-commit mailing list