summaryrefslogtreecommitdiffstats
path: root/source/include
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-11-15 14:06:35 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-11-15 14:06:35 +0000
commitaa41fb8703db4a4ecd3b353874c99a994e8ed630 (patch)
treea1aed6553f9988750b9c838c436b5fc2684849c3 /source/include
parent2662e351f2f8802a3bf13df3e7e3f0c1497fdb1c (diff)
downloadsamba-aa41fb8703db4a4ecd3b353874c99a994e8ed630.tar.gz
samba-aa41fb8703db4a4ecd3b353874c99a994e8ed630.tar.xz
samba-aa41fb8703db4a4ecd3b353874c99a994e8ed630.zip
Merge from HEAD:
- heimdal updates to configure - make DEBUG() const - add testsuite for: - preexec - preexec close - valid users - fix testsuite for 'invalid users' Andrew Bartlett
Diffstat (limited to 'source/include')
-rw-r--r--source/include/debug.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/include/debug.h b/source/include/debug.h
index 4b0b4b1ac47..5f87bf06fd9 100644
--- a/source/include/debug.h
+++ b/source/include/debug.h
@@ -36,9 +36,9 @@
arguemnts to DEBUG() right. We have got them wrong too often in the
past.
*/
-int Debug1( char *, ... ) PRINTF_ATTRIBUTE(1,2);
-BOOL dbgtext( char *, ... ) PRINTF_ATTRIBUTE(1,2);
-BOOL dbghdr( int level, char *file, char *func, int line );
+int Debug1( const char *, ... ) PRINTF_ATTRIBUTE(1,2);
+BOOL dbgtext( const char *, ... ) PRINTF_ATTRIBUTE(1,2);
+BOOL dbghdr( int level, const char *file, const char *func, int line );
extern XFILE *dbf;
extern pstring debugf;