aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nnn.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/nnn.c b/nnn.c
index 122f8c4..f571488 100644
--- a/nnn.c
+++ b/nnn.c
@@ -205,8 +205,9 @@ max_openfds()
static void
xstrlcpy(char *dest, const char *src, size_t n)
{
- strncpy(dest, src, n - 1);
- dest[n - 1] = '\0';
+ while (--n && (*dest++ = *src++));
+ if (!n)
+ *dest = '\0';
}
/*