diff options
| author | Doug Barton <dougb@FreeBSD.org> | 2002-10-25 07:26:36 +0000 |
|---|---|---|
| committer | Doug Barton <dougb@FreeBSD.org> | 2002-10-25 07:26:36 +0000 |
| commit | 7d5b77ef5f07388be1f1ceca12b8aa19c6741fb8 (patch) | |
| tree | 1c98ad37ef07b73036834d65c6054925bc1a513e | |
| parent | de4723f6e88b2e83712e9e6e67fc7279c350b79b (diff) | |
Notes
| -rw-r--r-- | usr.bin/stat/stat.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/stat/stat.c b/usr.bin/stat/stat.c index 668fe3817e0e..f7ce60faf690 100644 --- a/usr.bin/stat/stat.c +++ b/usr.bin/stat/stat.c @@ -1,5 +1,3 @@ -/* $NetBSD: stat.c,v 1.6 2002/07/09 21:25:00 atatat Exp $ */ - /* * Copyright (c) 2002 The NetBSD Foundation, Inc. * All rights reserved. @@ -38,7 +36,7 @@ #if 0 #ifndef lint -__RCSID("$NetBSD: stat.c,v 1.8 2002/08/13 20:15:06 atatat Exp $"); +__RCSID("$NetBSD: stat.c,v 1.9 2002/10/19 20:33:19 provos Exp $"); #endif #endif @@ -688,7 +686,7 @@ format1(const struct stat *st, data = 0; if (S_ISLNK(st->st_mode)) { snprintf(path, sizeof(path), " -> "); - l = readlink(file, path + 4, sizeof(path) - 4); + l = readlink(file, path + 4, sizeof(path) - 4 - 1); if (l == -1) { linkfail = 1; l = 0; |
