summaryrefslogtreecommitdiff
path: root/source3/include/debug.h
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
commit4b117b89179e49499c16d884dde9149ed1d69309 (patch)
treead6c1258db7a7069daf436cd5d13072e880a1170 /source3/include/debug.h
parented3d7fd7b5d3c1954e0e1fcb21600b2937f4f249 (diff)
downloadsamba-4b117b89179e49499c16d884dde9149ed1d69309.tar.gz
samba-4b117b89179e49499c16d884dde9149ed1d69309.tar.bz2
samba-4b117b89179e49499c16d884dde9149ed1d69309.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 (This used to be commit aa41fb8703db4a4ecd3b353874c99a994e8ed630)
Diffstat (limited to 'source3/include/debug.h')
-rw-r--r--source3/include/debug.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/debug.h b/source3/include/debug.h
index 4b0b4b1ac4..5f87bf06fd 100644
--- a/source3/include/debug.h
+++ b/source3/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;