upstream: Use the correct (according to POSIX) format for

left-justification in snmprintf. bz#3002, patch from velemas at gmail.com, ok
markus@.

OpenBSD-Commit-ID: 65d252b799be0cc8f68b6c47cece0a57bb00fea7
This commit is contained in:
dtucker@openbsd.org 2019-05-03 06:06:30 +00:00 committed by Damien Miller
parent 62be1ffe5f
commit 62dd70613b
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: progressmeter.c,v 1.47 2019/01/24 16:52:17 dtucker Exp $ */
/* $OpenBSD: progressmeter.c,v 1.48 2019/05/03 06:06:30 dtucker Exp $ */
/*
* Copyright (c) 2003 Nils Nordman. All rights reserved.
*
@ -169,8 +169,8 @@ refresh_progress_meter(int force_update)
file_len = win_size - 36;
if (file_len > 0) {
buf[0] = '\r';
snmprintf(buf+1, sizeof(buf)-1 , &file_len, "%*s",
file_len * -1, file);
snmprintf(buf+1, sizeof(buf)-1, &file_len, "%-*s",
file_len, file);
}
/* percent of transfer done */