From 2f243b804a9571fe6aafa795e20e8b6df2e4aac4 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 26 Oct 2013 11:43:28 +0300 Subject: [PATCH] Remove os_strncpy() os_strlpcy() should be used instead of os_strncpy() to guarantee null termination. Since there are no remaining strncpy uses, remove os_strncpy() definition. Signed-hostap: Jouni Malinen --- src/utils/os.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/utils/os.h b/src/utils/os.h index ad208341f..2aab13af0 100644 --- a/src/utils/os.h +++ b/src/utils/os.h @@ -360,15 +360,6 @@ int os_strcmp(const char *s1, const char *s2); */ int os_strncmp(const char *s1, const char *s2, size_t n); -/** - * os_strncpy - Copy a string - * @dest: Destination - * @src: Source - * @n: Maximum number of characters to copy - * Returns: dest - */ -char * os_strncpy(char *dest, const char *src, size_t n); - /** * os_strstr - Locate a substring * @haystack: String (haystack) to search from @@ -465,9 +456,6 @@ char * os_strdup(const char *s); #ifndef os_strncmp #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n)) #endif -#ifndef os_strncpy -#define os_strncpy(d, s, n) strncpy((d), (s), (n)) -#endif #ifndef os_strrchr #define os_strrchr(s, c) strrchr((s), (c)) #endif