diff options
author | 2009-12-13 18:13:28 +0000 | |
---|---|---|
committer | 2009-12-13 18:13:28 +0000 | |
commit | f1a2c36755497583b63fd450b1efeaa689a1d90d (patch) | |
tree | 6297315d7d21e802fd8e4401e1aefba053b1997f | |
parent | okay, so old libs are not 'kept', keep track of updates correctly instead (diff) | |
download | wireguard-openbsd-f1a2c36755497583b63fd450b1efeaa689a1d90d.tar.xz wireguard-openbsd-f1a2c36755497583b63fd450b1efeaa689a1d90d.zip |
spacing, no binary change.
-rw-r--r-- | usr.bin/ar/archive.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ar/archive.c b/usr.bin/ar/archive.c index dbef7a10f49..d384a51996b 100644 --- a/usr.bin/ar/archive.c +++ b/usr.bin/ar/archive.c @@ -1,4 +1,4 @@ -/* $OpenBSD: archive.c,v 1.11 2009/10/27 23:59:35 deraadt Exp $ */ +/* $OpenBSD: archive.c,v 1.12 2009/12/13 18:13:28 sobrado Exp $ */ /* $NetBSD: archive.c,v 1.7 1995/03/26 03:27:46 glass Exp $ */ /*- @@ -236,8 +236,8 @@ put_arobj(CF *cfp, struct stat *sb) } else if (lname > sizeof(hdr->ar_name) || strchr(name, ' ')) (void)snprintf(hb, sizeof hb, HDR1, AR_EFMT1, lname, - (long int)sb->st_mtimespec.tv_sec, uid, gid, sb->st_mode, - sb->st_size + lname, ARFMAG); + (long int)sb->st_mtimespec.tv_sec, + uid, gid, sb->st_mode, sb->st_size + lname, ARFMAG); else { lname = 0; (void)snprintf(hb, sizeof hb, |