diff options
author | Jeremy Allison <jra@samba.org> | 2007-12-04 17:05:33 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-12-04 17:05:33 -0800 |
commit | 755051b569762c13f8f4b4e52fa1183108a4e466 (patch) | |
tree | 70720b3e78a1fb964f8ed3ce7f1441648811aa17 /source3/lib | |
parent | de7fd585b11413113304334dd75ba6a207ec69eb (diff) | |
download | samba-755051b569762c13f8f4b4e52fa1183108a4e466.tar.gz samba-755051b569762c13f8f4b4e52fa1183108a4e466.tar.bz2 samba-755051b569762c13f8f4b4e52fa1183108a4e466.zip |
pull_ascii_pstring is gone.
Jeremy.
(This used to be commit 288aacce4b56d159218be311019cb951e5a232fd)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/charcnv.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c index 9592bbc287..ed778ad5e2 100644 --- a/source3/lib/charcnv.c +++ b/source3/lib/charcnv.c @@ -1178,12 +1178,6 @@ static size_t pull_ascii_base_talloc(TALLOC_CTX *ctx, return src_len; } - -size_t pull_ascii_pstring(char *dest, const void *src) -{ - return pull_ascii(dest, src, sizeof(pstring), -1, STR_TERMINATE); -} - size_t pull_ascii_fstring(char *dest, const void *src) { return pull_ascii(dest, src, sizeof(fstring), -1, STR_TERMINATE); |