summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2011-05-03 16:43:27 -0700
committerJeremy Allison <jra@samba.org>2011-05-04 22:14:14 +0200
commitff215f5c89c91a22c910400c8ac81d82d7459ba0 (patch)
treef94e9884bc1058e0726f676371c45df3ccdb3747 /source3
parent8380835fc6de38706d9af29dc7f0fa4cec4f9c90 (diff)
downloadsamba-ff215f5c89c91a22c910400c8ac81d82d7459ba0.tar.gz
samba-ff215f5c89c91a22c910400c8ac81d82d7459ba0.tar.bz2
samba-ff215f5c89c91a22c910400c8ac81d82d7459ba0.zip
I added them, so I get to kill them :-). Finally remove all uses of safe_strcpy and safe_strcat. Change to strlcpy, strlcat.
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed May 4 22:14:14 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r--source3/include/proto.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index dfe44a141e..2dd30d988b 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -937,12 +937,6 @@ size_t str_charnum(const char *s);
bool trim_char(char *s,char cfront,char cback);
bool strhasupper(const char *s);
bool strhaslower(const char *s);
-char *safe_strcpy_fn(char *dest,
- const char *src,
- size_t maxlength);
-char *safe_strcat_fn(char *dest,
- const char *src,
- size_t maxlength);
char *StrnCpy(char *dest,const char *src,size_t n);
bool in_list(const char *s, const char *list, bool casesensitive);
void string_free(char **s);