aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authormiplot <miplot@yandex-team.ru>2022-02-10 16:47:01 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:01 +0300
commit732828f889f54af5c0112279058b8f9def16d805 (patch)
treeb83306b6e37edeea782e9eed673d89286c4fef35 /contrib
parent21eb046aa272c8150b7a9d169ade465ad7c395b4 (diff)
downloadydb-732828f889f54af5c0112279058b8f9def16d805.tar.gz
Restoring authorship annotation for <miplot@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/libs/libc_compat/strlcat.c56
-rw-r--r--contrib/libs/ya.make2
2 files changed, 29 insertions, 29 deletions
diff --git a/contrib/libs/libc_compat/strlcat.c b/contrib/libs/libc_compat/strlcat.c
index 9e455025b9..d2198a2bdc 100644
--- a/contrib/libs/libc_compat/strlcat.c
+++ b/contrib/libs/libc_compat/strlcat.c
@@ -1,45 +1,45 @@
/* $OpenBSD: strlcat.c,v 1.19 2019/01/25 00:19:25 millert Exp $ */
-
-/*
+
+/*
* Copyright (c) 1998, 2015 Todd C. Miller <millert@openbsd.org>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-#include <sys/types.h>
-#include <string.h>
-
-/*
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <sys/types.h>
+#include <string.h>
+
+/*
* Appends src to string dst of size dsize (unlike strncat, dsize is the
* full size of dst, not space left). At most dsize-1 characters
* will be copied. Always NUL terminates (unless dsize <= strlen(dst)).
* Returns strlen(src) + MIN(dsize, strlen(initial dst)).
* If retval >= dsize, truncation occurred.
- */
-size_t
+ */
+size_t
strlcat(char *dst, const char *src, size_t dsize)
-{
+{
const char *odst = dst;
const char *osrc = src;
size_t n = dsize;
size_t dlen;
-
+
/* Find the end of dst and adjust bytes left but don't go past end. */
while (n-- != 0 && *dst != '\0')
dst++;
dlen = dst - odst;
n = dsize - dlen;
-
+
if (n-- == 0)
return(dlen + strlen(src));
while (*src != '\0') {
@@ -50,7 +50,7 @@ strlcat(char *dst, const char *src, size_t dsize)
src++;
}
*dst = '\0';
-
+
return(dlen + (src - osrc)); /* count does not include NUL */
-}
-
+}
+
diff --git a/contrib/libs/ya.make b/contrib/libs/ya.make
index 94628f2b83..9c4640fdcf 100644
--- a/contrib/libs/ya.make
+++ b/contrib/libs/ya.make
@@ -92,7 +92,7 @@ RECURSE(
google-compute-engine-oslogin
googleapis-common-protos
gost-engine
- gpsd
+ gpsd
grpc
grpc/python
grpc/src/proto