Blame SOURCES/0007-check-input.patch

390991
diff -urNp old/doc/ipmitool.1 new/doc/ipmitool.1
390991
--- old/doc/ipmitool.1	2017-10-03 16:10:50.446539988 +0200
390991
+++ new/doc/ipmitool.1	2017-10-03 16:16:37.039673239 +0200
390991
@@ -3170,13 +3170,14 @@ SOL configuration data for the currently
390991
 
390991
 Enable, disable or show status of SOL payload for the user on the specified channel. 
390991
 .TP 
390991
-\fIset\fP <\fBparameter\fR> <\fBvalue\fR> [<\fBchannel\fR>]
390991
+\fIset\fP <\fBparameter\fR> <\fBvalue\fR> [<\fBchannel\fR>] [\fBnoguard\fR]
390991
 .br 
390991
 
390991
 Configure parameters for Serial Over Lan.  If no channel is given,
390991
 it will display SOL configuration data for the currently used
390991
 channel.  Configuration parameter updates are automatically guarded
390991
-with the updates to the set\-in\-progress parameter.
390991
+with the updates to the set\-in\-progress parameter, unless \fInoguard\fR
390991
+parameter is present.
390991
 .RS
390991
 .TP 
390991
 Valid parameters and values are:
390991
diff -urNp old/lib/ipmi_sol.c new/lib/ipmi_sol.c
390991
--- old/lib/ipmi_sol.c	2017-10-03 16:10:50.447539996 +0200
390991
+++ new/lib/ipmi_sol.c	2017-10-03 16:18:37.079006949 +0200
390991
@@ -1875,7 +1875,7 @@ static void
390991
 print_sol_usage(void)
390991
 {
390991
 	lprintf(LOG_NOTICE, "SOL Commands: info [<channel number>]");
390991
-	lprintf(LOG_NOTICE, "              set <parameter> <value> [channel]");
390991
+	lprintf(LOG_NOTICE, "              set <parameter> <value> [channel] [noguard]");
390991
 	lprintf(LOG_NOTICE, "              payload <enable|disable|status> [channel] [userid]");
390991
 	lprintf(LOG_NOTICE, "              activate [<usesolkeepalive|nokeepalive>] [instance=<number>]");
390991
 	lprintf(LOG_NOTICE, "              deactivate [instance=<number>]");
390991
@@ -1890,6 +1890,8 @@ print_sol_usage(void)
390991
 static void
390991
 print_sol_set_usage(void)
390991
 {
390991
+	lprintf(LOG_NOTICE, "\nSOL set usage: \n");
390991
+	lprintf(LOG_NOTICE, "  sol set <parameter> <value> [channel] [noguard]\n");
390991
 	lprintf(LOG_NOTICE, "\nSOL set parameters and values: \n");
390991
   	lprintf(LOG_NOTICE, "  set-in-progress             set-complete | "
390991
 		"set-in-progress | commit-write");