Commit e1e999de e1e999ded50db980bf844c479c9fc150e0ed3e5d by Sergey Poznyakoff

Bugfix.

* libmailutils/filter/iconvflt.c: Fix silly errors.
1 parent 2357bd10
...@@ -80,12 +80,12 @@ static void ...@@ -80,12 +80,12 @@ static void
80 format_octal (char *op, unsigned char n) 80 format_octal (char *op, unsigned char n)
81 { 81 {
82 op += 4; 82 op += 4;
83 *--op = n % 8; 83 *--op = n % 8 + '0';
84 n >> 3; 84 n >>= 3;
85 *--op = n % 8; 85 *--op = n % 8 + '0';
86 n >> 3; 86 n >>= 3;
87 *--op = n % 8; 87 *--op = n % 8 + '0';
88 n >> 3; 88 n >>= 3;
89 *--op = '\\'; 89 *--op = '\\';
90 } 90 }
91 91
......