aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/c-ares/ares_strdup.c
diff options
context:
space:
mode:
authorneksard <neksard@yandex-team.ru>2022-02-10 16:45:33 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:33 +0300
commit1d9c550e7c38e051d7961f576013a482003a70d9 (patch)
treeb2cc84ee7850122e7ccf51d0ea21e4fa7e7a5685 /contrib/libs/c-ares/ares_strdup.c
parent8f7cf138264e0caa318144bf8a2c950e0b0a8593 (diff)
downloadydb-1d9c550e7c38e051d7961f576013a482003a70d9.tar.gz
Restoring authorship annotation for <neksard@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/c-ares/ares_strdup.c')
-rw-r--r--contrib/libs/c-ares/ares_strdup.c56
1 files changed, 28 insertions, 28 deletions
diff --git a/contrib/libs/c-ares/ares_strdup.c b/contrib/libs/c-ares/ares_strdup.c
index bdf6c31b49..0c3dcffc30 100644
--- a/contrib/libs/c-ares/ares_strdup.c
+++ b/contrib/libs/c-ares/ares_strdup.c
@@ -1,27 +1,27 @@
-
-
-/* Copyright 1998 by the Massachusetts Institute of Technology.
- *
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any purpose and without
- * fee is hereby granted, provided that the above copyright
- * notice appear in all copies and that both that copyright
- * notice and this permission notice appear in supporting
- * documentation, and that the name of M.I.T. not be used in
- * advertising or publicity pertaining to distribution of the
- * software without specific, written prior permission.
- * M.I.T. makes no representations about the suitability of
- * this software for any purpose. It is provided "as is"
- * without express or implied warranty.
- */
-
-#include "ares_setup.h"
-#include "ares_strdup.h"
+
+
+/* Copyright 1998 by the Massachusetts Institute of Technology.
+ *
+ * Permission to use, copy, modify, and distribute this
+ * software and its documentation for any purpose and without
+ * fee is hereby granted, provided that the above copyright
+ * notice appear in all copies and that both that copyright
+ * notice and this permission notice appear in supporting
+ * documentation, and that the name of M.I.T. not be used in
+ * advertising or publicity pertaining to distribution of the
+ * software without specific, written prior permission.
+ * M.I.T. makes no representations about the suitability of
+ * this software for any purpose. It is provided "as is"
+ * without express or implied warranty.
+ */
+
+#include "ares_setup.h"
+#include "ares_strdup.h"
#include "ares.h"
#include "ares_private.h"
-
-char *ares_strdup(const char *s1)
-{
+
+char *ares_strdup(const char *s1)
+{
#ifdef HAVE_STRDUP
if (ares_malloc == malloc)
return strdup(s1);
@@ -30,7 +30,7 @@ char *ares_strdup(const char *s1)
{
size_t sz;
char * s2;
-
+
if(s1) {
sz = strlen(s1);
if(sz < (size_t)-1) {
@@ -41,9 +41,9 @@ char *ares_strdup(const char *s1)
memcpy(s2, s1, sz * sizeof(char));
return s2;
}
- }
- }
- }
+ }
+ }
+ }
return (char *)NULL;
- }
-}
+ }
+}