Don't call log() without a format string.
MFC after: 2 weeks
This commit is contained in:
parent
db8b9c344e
commit
7c483fee3f
@ -290,7 +290,7 @@ sscf_uni_abort(uvp, msg)
|
||||
/*
|
||||
* Log error message
|
||||
*/
|
||||
log(LOG_ERR, msg);
|
||||
log(LOG_ERR, "%s", msg);
|
||||
|
||||
/*
|
||||
* Set termination states
|
||||
|
@ -399,7 +399,7 @@ sscop_abort(sop, msg)
|
||||
/*
|
||||
* Log and count error
|
||||
*/
|
||||
log(LOG_ERR, msg);
|
||||
log(LOG_ERR, "%s", msg);
|
||||
sscop_stat.sos_aborts++;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user