diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-11-15 14:06:35 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-11-15 14:06:35 +0000 |
commit | aa41fb8703db4a4ecd3b353874c99a994e8ed630 (patch) | |
tree | a1aed6553f9988750b9c838c436b5fc2684849c3 /source/include | |
parent | 2662e351f2f8802a3bf13df3e7e3f0c1497fdb1c (diff) | |
download | samba-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.h | 6 |
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; |