Testsuite: DKIM/transport_filter testcase
[exim.git] / src / src / exim_dbmbuild.c
index 6f5b0e9036ae65ee36253fdaebdd1e33f3c6cabf..85bc3fd8808ce36f72e8b910268412c3fc8e6e6a 100644 (file)
@@ -34,6 +34,12 @@ uschar * spool_directory = NULL;     /* dummy for dbstuff.h */
 
 /******************************************************************************/
                                        /* dummies needed by Solaris build */
+void
+millisleep(int msec)
+{}
+uschar *
+readconf_printtime(int t)
+{ return NULL; }
 void *
 store_get_3(int size, BOOL tainted, const char *filename, int linenumber)
 { return NULL; }
@@ -50,8 +56,11 @@ string_vformat_trc(gstring * g, const uschar * func, unsigned line,
 uschar *
 string_sprintf_trc(const char * a, const uschar * b, unsigned c, ...)
 { return NULL; }
-BOOL split_spool_directory;
-uschar * queue_name;
+
+struct global_flags    f;
+unsigned int           log_selector[1];
+uschar *               queue_name;
+BOOL                   split_spool_directory;
 /******************************************************************************/
 
 
@@ -117,6 +126,7 @@ string_interpret_escape(const uschar **pp)
 int ch;
 const uschar *p = *pp;
 ch = *(++p);
+if (ch == '\0') return **pp;
 if (isdigit(ch) && ch != '8' && ch != '9')
   {
   ch -= '0';