diff options
author | Phil Pennock <pdp@exim.org> | 2012-04-28 14:17:24 -0700 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2012-04-28 14:17:24 -0700 |
commit | 79fe97d8ea163ff9a3b229998c5434890f03b18f (patch) | |
tree | ba284669f7b17ec0cc10d95cb2b8bc3c62d2405c /src | |
parent | c80c557026f3933b0472b13331924f8bd4ed9bf7 (diff) |
include string_unprinting() in COMPILE_UTILITY cases.
jgh debugged eximon build failure; util-spool_in.o needs it
Diffstat (limited to 'src')
-rw-r--r-- | src/src/string.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/src/string.c b/src/src/string.c index ece200bcc..ab5156537 100644 --- a/src/src/string.c +++ b/src/src/string.c @@ -332,6 +332,10 @@ while (*t != 0) *tt = 0; return ss; } +#endif /* COMPILE_UTILITY */ + + + /************************************************* * Undo printing escapes in string * @@ -398,7 +402,6 @@ while (*p) return ss; } -#endif /* COMPILE_UTILITY */ |