Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
99885cb9
...
99885cb99f500a1bc3e5f2a8282531a3701d038f
authored
2002-02-21 01:18:52 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
The debug levels are a bitmask, and I'd started to enumerate them. Oops.
1 parent
76def5fa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
include/mailutils/debug.h
include/mailutils/debug.h
View file @
99885cb
...
...
@@ -36,9 +36,9 @@ extern "C" {
struct
_debug
;
typedef
struct
_debug
*
mu_debug_t
;
#define MU_DEBUG_ERROR 1
#define MU_DEBUG_TRACE 2
#define MU_DEBUG_PROT
3
#define MU_DEBUG_ERROR
0x000
1
#define MU_DEBUG_TRACE
0x000
2
#define MU_DEBUG_PROT
0x0004
extern
int
mu_debug_create
__P
((
mu_debug_t
*
,
void
*
owner
));
extern
void
mu_debug_destroy
__P
((
mu_debug_t
*
,
void
*
owner
));
...
...
Please
register
or
sign in
to post a comment