Package: libc6
Version: 2.11.2-2
Severity: normal
Tags: upstream
Hi.
argp tries to localise strings from its source (like "Usage:" or "Give
a short usage message") using default text domain, which fails (unless
program copies translations from libc po files to its own). It is
demonstrated by the
Package: libc6
Version: 2.11.2-2
Severity: normal
--- BEGIN TESTCASE PROGRAM ---
#include
#include
int main()
{
char* x = malloc(5);
char* y = malloc(5);
int foo;
strcpy(x, "helo");
strcpy(y, "ehlo");
foo = strcmp(x, y);
foo = strncmp(x, y, 4);
free(x);
free(y);
retur
2 matches
Mail list logo