summaryrefslogtreecommitdiffstats
path: root/source/lib/debug.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-05-07 09:35:35 +0000
committerVolker Lendecke <vlendec@samba.org>2007-05-07 09:35:35 +0000
commita025f4c5387781f94a9f666a318b22e8e53fcc38 (patch)
tree4640be6990289562db677b33fc19fd9042c0a873 /source/lib/debug.c
parentbb0232bbf66a44742733dcf542ba931a1a1d271e (diff)
downloadsamba-a025f4c5387781f94a9f666a318b22e8e53fcc38.tar.gz
samba-a025f4c5387781f94a9f666a318b22e8e53fcc38.tar.xz
samba-a025f4c5387781f94a9f666a318b22e8e53fcc38.zip
r22736: Start to merge the low-hanging fruit from the now 7000-line cluster patch.
This changes "struct process_id" to "struct server_id", keeping both is just too much hassle. No functional change (I hope ;-)) Volker
Diffstat (limited to 'source/lib/debug.c')
-rw-r--r--source/lib/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/debug.c b/source/lib/debug.c
index 62fda5741c9..d231f555854 100644
--- a/source/lib/debug.c
+++ b/source/lib/debug.c
@@ -471,7 +471,7 @@ BOOL debug_parse_levels(const char *params_str)
Receive a "set debug level" message.
****************************************************************************/
-static void debug_message(int msg_type, struct process_id src,
+static void debug_message(int msg_type, struct server_id src,
void *buf, size_t len, void *private_data)
{
const char *params_str = (const char *)buf;
@@ -508,7 +508,7 @@ void debug_message_send(pid_t pid, const char *params_str)
Return current debug level.
****************************************************************************/
-static void debuglevel_message(int msg_type, struct process_id src,
+static void debuglevel_message(int msg_type, struct server_id src,
void *buf, size_t len, void *private_data)
{
char *message = debug_list_class_names_and_levels();