SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,20 @@
--- cmd_ls.c.orig Sun Jul 21 05:33:34 2002
+++ cmd_ls.c Sun Jul 21 05:34:27 2002
@@ -380,7 +380,7 @@ listFile(
*/
if (flags & LSF_INODE)
{
- sprintf(cp, "%7ld ", statBuf->st_ino);
+ sprintf(cp, "%7d ", statBuf->st_ino);
cp += strlen(cp);
}
@@ -434,7 +434,7 @@ listFile(
((unsigned long) statBuf->st_rdev) & 0xff);
}
else
- sprintf(cp, "%8ld ", statBuf->st_size);
+ sprintf(cp, "%8lld ", statBuf->st_size);
cp += strlen(cp);