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:23 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:23 +0300
commit8f7cf138264e0caa318144bf8a2c950e0b0a8593 (patch)
tree83bf5c8c8047c42d8475e6095df90ccdc3d1b57f /contrib/libs/c-ares/ares_strdup.c
parentd3a398281c6fd1d3672036cb2d63f842d2cb28c5 (diff)
downloadydb-8f7cf138264e0caa318144bf8a2c950e0b0a8593.tar.gz
Restoring authorship annotation for <neksard@yandex-team.ru>. Commit 1 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 0c3dcffc30..bdf6c31b49 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;
- }
-}
+ }
+}