diff options
author | Herb Lewis <herb@samba.org> | 2004-04-30 14:28:38 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2004-04-30 14:28:38 +0000 |
commit | db18fab4f86e76c3ff037ec39728fefe243202a9 (patch) | |
tree | 19a0f66b7a3771175e1e6c9ec7908ae3b6ffb152 | |
parent | a4de2269b08da321550250a9b94b5eb1a0493bf7 (diff) | |
download | samba-db18fab4f86e76c3ff037ec39728fefe243202a9.tar.gz samba-db18fab4f86e76c3ff037ec39728fefe243202a9.tar.xz samba-db18fab4f86e76c3ff037ec39728fefe243202a9.zip |
r428: add acls debug class
-rw-r--r-- | source/include/debug.h | 1 | ||||
-rw-r--r-- | source/lib/debug.c | 1 | ||||
-rw-r--r-- | source/smbd/posix_acls.c | 3 |
3 files changed, 5 insertions, 0 deletions
diff --git a/source/include/debug.h b/source/include/debug.h index 55f07d8a18e..52e06b9360b 100644 --- a/source/include/debug.h +++ b/source/include/debug.h @@ -93,6 +93,7 @@ extern int DEBUGLEVEL; #define DBGC_VFS 12 #define DBGC_IDMAP 13 #define DBGC_QUOTA 14 +#define DBGC_ACLS 15 /* So you can define DBGC_CLASS before including debug.h */ #ifndef DBGC_CLASS diff --git a/source/lib/debug.c b/source/lib/debug.c index fe4cd52a8b1..b0d8ff35230 100644 --- a/source/lib/debug.c +++ b/source/lib/debug.c @@ -163,6 +163,7 @@ static const char *default_classname_table[] = { "vfs", /* DBGC_VFS */ "idmap", /* DBGC_IDMAP */ "quota", /* DBGC_QUOTA */ + "acls", /* DBGC_QUOTA */ NULL }; diff --git a/source/smbd/posix_acls.c b/source/smbd/posix_acls.c index 25e8fd802bd..158f1a0ede8 100644 --- a/source/smbd/posix_acls.c +++ b/source/smbd/posix_acls.c @@ -21,6 +21,9 @@ #include "includes.h" +#undef DBGC_CLASS +#define DBGC_CLASS DBGC_ACLS + /**************************************************************************** Data structures representing the internal ACE format. ****************************************************************************/ |