diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-07-26 17:37:19 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-07-26 17:37:19 +0400 |
commit | d6625c5b603460aa485acc5d3ddd96a8b3c10858 (patch) | |
tree | 00ff73488e516fc0117f2a037e2ae443f6306541 /src/printf.h | |
parent | 6eded20b2c15e524ed9a83c436a3b5f0bfbd253c (diff) | |
download | rspamd-d6625c5b603460aa485acc5d3ddd96a8b3c10858.tar.gz rspamd-d6625c5b603460aa485acc5d3ddd96a8b3c10858.zip |
* Add option max_size for regexp module to skip expensive regexp on long messages
Diffstat (limited to 'src/printf.h')
-rw-r--r-- | src/printf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/printf.h b/src/printf.h index c1c6866d6..436ec3059 100644 --- a/src/printf.h +++ b/src/printf.h @@ -31,11 +31,11 @@ * supported formats: * %[0][width][x][X]O off_t * %[0][width]T time_t - * %[0][width][u][x|X]z ssize_t/size_t - * %[0][width][u][x|X]d gint/guint - * %[0][width][u][x|X]l long - * %[0][width][u][x|X]D gint32/guint32 - * %[0][width][u][x|X]L gint64/guint64 + * %[0][width][u][x|X|h|H]z ssize_t/size_t + * %[0][width][u][x|X|h|H]d gint/guint + * %[0][width][u][x|X|h|H]l long + * %[0][width][u][x|X|h|H]D gint32/guint32 + * %[0][width][u][x|X|h|H]L gint64/guint64 * %[0][width][.width]f double * %[0][width][.width]F long double * %[0][width][.width]g double |