ref: 10cc320a285393b7dc876cf38bc231e875c675f1
parent: 25a4820b469ab27c3211ec9ef849532f4e55a93a
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Dec 18 13:03:37 EST 2023
ip/cifsd: dont add pointless logging (already logged when debug is active)
--- a/sys/src/cmd/ip/cifsd/smb.c
+++ b/sys/src/cmd/ip/cifsd/smb.c
@@ -1761,7 +1761,6 @@
void
smbcmd(Req *r, int cmd, uchar *h, uchar *p, uchar *e)
{
- logit("processing [%.2x] command", cmd);
if((cmd >= nelem(optab)) || (optab[cmd].fun == nil)){
logit("[%.2x] command not implemented", cmd);
r->respond(r, STATUS_NOT_SUPPORTED);
--
⑨