[svn-upgrade] Integrating new upstream version, shadow (4.0.15)

This commit is contained in:
nekral-guest
2007-10-07 11:47:22 +00:00
parent 24178ad677
commit 591830e43b
236 changed files with 9504 additions and 3729 deletions

View File

@@ -9,7 +9,7 @@
#include <config.h>
#ident "$Id: xmalloc.c,v 1.7 2005/08/31 17:24:58 kloczek Exp $"
#ident "$Id: xmalloc.c,v 1.8 2006/01/23 09:46:30 kloczek Exp $"
#include <stdio.h>
#include "defines.h"
@@ -17,7 +17,7 @@ char *xmalloc (size_t size)
{
char *ptr;
ptr = malloc (size);
ptr = (char *) malloc (size);
if (!ptr && size) {
fprintf (stderr, _("malloc(%d) failed\n"), (int) size);
exit (13);