summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-snprintf.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-03-19 00:07:07 +1100
committerDarren Tucker <dtucker@zip.com.au>2006-03-19 00:07:07 +1100
commit9834cab32ef1abd8f0e4e74852ac52c35cfce0ef (patch)
tree75a37636390c2d0f2d3a7f50cdd4a5bbfcdddab2 /openbsd-compat/bsd-snprintf.c
parent66f9eb65ff494e69fc0bdfede303c60763ad5515 (diff)
- (dtucker) [openbsd-compat/bsd-snprintf.c] Bug #1173: make fmtint() take
a LLONG rather than a long. Fixes scp'ing of large files on platforms with missing/broken snprintfs. Patch from e.borovac at bom.gov.au.
Diffstat (limited to 'openbsd-compat/bsd-snprintf.c')
-rw-r--r--openbsd-compat/bsd-snprintf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/openbsd-compat/bsd-snprintf.c b/openbsd-compat/bsd-snprintf.c
index e4ba154fd..571c61fc0 100644
--- a/openbsd-compat/bsd-snprintf.c
+++ b/openbsd-compat/bsd-snprintf.c
@@ -89,7 +89,7 @@
89 89
90#include "includes.h" 90#include "includes.h"
91 91
92RCSID("$Id: bsd-snprintf.c,v 1.11 2005/12/17 11:32:04 dtucker Exp $"); 92RCSID("$Id: bsd-snprintf.c,v 1.12 2006/03/18 13:07:07 dtucker Exp $");
93 93
94#if defined(BROKEN_SNPRINTF) /* For those with broken snprintf() */ 94#if defined(BROKEN_SNPRINTF) /* For those with broken snprintf() */
95# undef HAVE_SNPRINTF 95# undef HAVE_SNPRINTF
@@ -161,7 +161,7 @@ static size_t dopr(char *buffer, size_t maxlen, const char *format,
161static void fmtstr(char *buffer, size_t *currlen, size_t maxlen, 161static void fmtstr(char *buffer, size_t *currlen, size_t maxlen,
162 char *value, int flags, int min, int max); 162 char *value, int flags, int min, int max);
163static void fmtint(char *buffer, size_t *currlen, size_t maxlen, 163static void fmtint(char *buffer, size_t *currlen, size_t maxlen,
164 long value, int base, int min, int max, int flags); 164 LLONG value, int base, int min, int max, int flags);
165static void fmtfp(char *buffer, size_t *currlen, size_t maxlen, 165static void fmtfp(char *buffer, size_t *currlen, size_t maxlen,
166 LDOUBLE fvalue, int min, int max, int flags); 166 LDOUBLE fvalue, int min, int max, int flags);
167static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c); 167static void dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c);
@@ -468,10 +468,10 @@ static void fmtstr(char *buffer, size_t *currlen, size_t maxlen,
468/* Have to handle DP_F_NUM (ie 0x and 0 alternates) */ 468/* Have to handle DP_F_NUM (ie 0x and 0 alternates) */
469 469
470static void fmtint(char *buffer, size_t *currlen, size_t maxlen, 470static void fmtint(char *buffer, size_t *currlen, size_t maxlen,
471 long value, int base, int min, int max, int flags) 471 LLONG value, int base, int min, int max, int flags)
472{ 472{
473 int signvalue = 0; 473 int signvalue = 0;
474 unsigned long uvalue; 474 unsigned LLONG uvalue;
475 char convert[20]; 475 char convert[20];
476 int place = 0; 476 int place = 0;
477 int spadlen = 0; /* amount to space pad */ 477 int spadlen = 0; /* amount to space pad */