X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_gfx.c;h=5841d50867883e5c9d27581261ba31b649ab82bd;hp=c56211dae3c2f3e6eccccff36858d3f3db3963bb;hb=e9fb580fcf041573054e5bcf2184fa7811f9dd59;hpb=db29017f473c15fa6b8f0490093f339fb3f5424e diff --git a/src/rrd_gfx.c b/src/rrd_gfx.c index c56211d..5841d50 100644 --- a/src/rrd_gfx.c +++ b/src/rrd_gfx.c @@ -2034,9 +2034,9 @@ static void pdf_put_string_contents_wide(pdf_buffer *buf, const afm_char *text) default: if (ch > 255) { pdf_put_char(buf, '?'); - } else if (ch >= 126 || ch < 32) { + } else if (ch > 125 || ch < 32) { pdf_put_char(buf, ch); - } else if (ch >= 0 && ch <= 255) { + } else { char tmp[10]; snprintf(tmp, sizeof(tmp), "\\%03o", (int)ch); pdf_puts(buf, tmp);