mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
* include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
2006-10-06 Ulrich Drepper <drepper@redhat.com> * po/pl.po: Update from translation team. * nscd/nscd.c (main): Fix typo in message. Patch by Jakub Bogsz <qboosh@pld-linux.org>.
This commit is contained in:
parent
2e4f1cfb1f
commit
3a4e060900
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2006-10-06 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
|
||||||
|
|
||||||
|
2006-10-06 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* po/pl.po: Update from translation team.
|
||||||
|
|
||||||
|
* nscd/nscd.c (main): Fix typo in message.
|
||||||
|
Patch by Jakub Bogsz <qboosh@pld-linux.org>.
|
||||||
|
|
||||||
2006-10-02 Jakub Jelinek <jakub@redhat.com>
|
2006-10-02 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
[BZ #3291]
|
[BZ #3291]
|
||||||
|
@ -304,7 +304,7 @@
|
|||||||
/* Major and minor version number of the GNU C library package. Use
|
/* Major and minor version number of the GNU C library package. Use
|
||||||
these macros to test for features in specific releases. */
|
these macros to test for features in specific releases. */
|
||||||
#define __GLIBC__ 2
|
#define __GLIBC__ 2
|
||||||
#define __GLIBC_MINOR__ 4
|
#define __GLIBC_MINOR__ 5
|
||||||
|
|
||||||
#define __GLIBC_PREREQ(maj, min) \
|
#define __GLIBC_PREREQ(maj, min) \
|
||||||
((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
|
((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
%
|
%
|
||||||
% Tatar Language Locale for Tatarstan
|
% Tatar Language Locale for Russia
|
||||||
% Source:
|
% Source:
|
||||||
% Contact: Pablo Saratxaga, Rinat Norkin
|
% Contact: Pablo Saratxaga, Rinat Norkin
|
||||||
% Email: <pablo@mandrakesoft.com>, <rinat@taif.ru>
|
% Email: <pablo@mandrakesoft.com>, <rinat@taif.ru>
|
||||||
@ -24,7 +24,7 @@ escape_char /
|
|||||||
% replace cyrillic alphabet
|
% replace cyrillic alphabet
|
||||||
|
|
||||||
LC_IDENTIFICATION
|
LC_IDENTIFICATION
|
||||||
title "Tatar language locale for Tatarstan"
|
title "Tatar language locale for Russia"
|
||||||
source "Rinat Norkin"
|
source "Rinat Norkin"
|
||||||
address ""
|
address ""
|
||||||
contact "Pablo Saratxaga, Rinat Norkin"
|
contact "Pablo Saratxaga, Rinat Norkin"
|
||||||
@ -32,7 +32,7 @@ email "pablo@mandrakesoft.com, rinat@taif.ru"
|
|||||||
tel ""
|
tel ""
|
||||||
fax ""
|
fax ""
|
||||||
language "Tatar"
|
language "Tatar"
|
||||||
territory "Tatarstan"
|
territory "Russia"
|
||||||
revision "0.4"
|
revision "0.4"
|
||||||
date "2001-01-28"
|
date "2001-01-28"
|
||||||
|
|
||||||
|
@ -2393,8 +2393,9 @@ This function is similar to @code{sprintf}, except that it dynamically
|
|||||||
allocates a string (as with @code{malloc}; @pxref{Unconstrained
|
allocates a string (as with @code{malloc}; @pxref{Unconstrained
|
||||||
Allocation}) to hold the output, instead of putting the output in a
|
Allocation}) to hold the output, instead of putting the output in a
|
||||||
buffer you allocate in advance. The @var{ptr} argument should be the
|
buffer you allocate in advance. The @var{ptr} argument should be the
|
||||||
address of a @code{char *} object, and @code{asprintf} stores a pointer
|
address of a @code{char *} object, and a successful call to
|
||||||
to the newly allocated string at that location.
|
@code{asprintf} stores a pointer to the newly allocated string at that
|
||||||
|
location.
|
||||||
|
|
||||||
The return value is the number of characters allocated for the buffer, or
|
The return value is the number of characters allocated for the buffer, or
|
||||||
less than zero if an error occurred. Usually this means that the buffer
|
less than zero if an error occurred. Usually this means that the buffer
|
||||||
|
@ -237,7 +237,7 @@ main (int argc, char **argv)
|
|||||||
|
|
||||||
if (chdir ("/") != 0)
|
if (chdir ("/") != 0)
|
||||||
error (EXIT_FAILURE, errno,
|
error (EXIT_FAILURE, errno,
|
||||||
_("cannot change current working cirectory to \"/\""));
|
_("cannot change current working directory to \"/\""));
|
||||||
|
|
||||||
openlog ("nscd", LOG_CONS | LOG_ODELAY, LOG_DAEMON);
|
openlog ("nscd", LOG_CONS | LOG_ODELAY, LOG_DAEMON);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user