diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-08-16 14:02:15 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-08-16 14:02:15 +0000 |
commit | 35daff80ad5e762ab31d83256344b3a0b6e6f2b7 (patch) | |
tree | cde6f70f0e9d682ee0eec32672243d1d965127a7 /libpam_misc | |
parent | 23624ea6f78ec8acc167a2491c00998907fc76b1 (diff) | |
download | pam-35daff80ad5e762ab31d83256344b3a0b6e6f2b7.tar.gz pam-35daff80ad5e762ab31d83256344b3a0b6e6f2b7.tar.bz2 pam-35daff80ad5e762ab31d83256344b3a0b6e6f2b7.zip |
Relevant BUGIDs: none
Purpose of commit: new feature
Commit summary:
---------------
2. round of automake/autoconf/libtool changes
Diffstat (limited to 'libpam_misc')
-rw-r--r-- | libpam_misc/.cvsignore | 2 | ||||
-rw-r--r-- | libpam_misc/xstrdup.c | 31 |
2 files changed, 2 insertions, 31 deletions
diff --git a/libpam_misc/.cvsignore b/libpam_misc/.cvsignore index b6cfd742..abf21675 100644 --- a/libpam_misc/.cvsignore +++ b/libpam_misc/.cvsignore @@ -7,3 +7,5 @@ misc_conv.o xstrdup.o dynamic static +Makefile +Makefile.in diff --git a/libpam_misc/xstrdup.c b/libpam_misc/xstrdup.c deleted file mode 100644 index 6a4ca6f7..00000000 --- a/libpam_misc/xstrdup.c +++ /dev/null @@ -1,31 +0,0 @@ -/* $Id$ */ - -#include <malloc.h> -#include <string.h> -#include <security/pam_misc.h> - -/* - * Safe duplication of character strings. "Paranoid"; don't leave - * evidence of old token around for later stack analysis. - */ - -char *xstrdup(const char *x) -{ - register char *new=NULL; - - if (x != NULL) { - register int i; - - for (i=0; x[i]; ++i); /* length of string */ - if ((new = malloc(++i)) == NULL) { - i = 0; - } else { - while (i-- > 0) { - new[i] = x[i]; - } - } - x = NULL; - } - - return new; /* return the duplicate or NULL on error */ -} |