35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From 54f7bf4f627bb73bf8fdd672d6e723dfdf60d7b4 Mon Sep 17 00:00:00 2001
|
|
From: Kern Sibbald <kern@sibbald.com>
|
|
Date: Mon, 10 Jul 2017 20:24:10 +0200
|
|
Subject: [PATCH 4/4] Remove two incorrect trailing commas in bsock.h
|
|
|
|
---
|
|
bacula/src/lib/bsock.h | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/bacula/src/lib/bsock.h b/bacula/src/lib/bsock.h
|
|
index e2de186b5..b18b9bcee 100644
|
|
--- a/bacula/src/lib/bsock.h
|
|
+++ b/bacula/src/lib/bsock.h
|
|
@@ -289,7 +289,7 @@ enum {
|
|
BNET_SIGNAL = -1,
|
|
BNET_HARDEOF = -2,
|
|
BNET_ERROR = -3,
|
|
- BNET_COMMAND = -4,
|
|
+ BNET_COMMAND = -4
|
|
};
|
|
|
|
/*
|
|
@@ -307,7 +307,7 @@ enum {
|
|
BNET_CMD_STO_BLOCK = 4, /* backup FD->SD FD send requested block */
|
|
BNET_CMD_REC_ACK = 5, /* restore FD->SD FD has consumed records from the buffer */
|
|
BNET_CMD_STP_THREAD = 6, /* restore FD->SD SD must stop thread */
|
|
- BNET_CMD_STP_FLOWCTRL = 7, /* backup FD->SD SD must stop sending flowcontrol information */
|
|
+ BNET_CMD_STP_FLOWCTRL = 7 /* backup FD->SD SD must stop sending flowcontrol information */
|
|
};
|
|
|
|
const char *bnet_cmd_to_name(int val);
|
|
--
|
|
2.13.0
|
|
|