diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2023-12-18 18:03:37 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2023-12-18 18:03:37 +0000 |
commit | 2c8181eed790fb5bc31c348f3988fd462601a0c3 (patch) | |
tree | c7de3dd9e5a44077aaf9aee9886b7b4fe8df1a75 | |
parent | 0e96985e12d03ea0dcc9a82a5e4f307b80aca93d (diff) |
ip/cifsd: dont add pointless logging (already logged when debug is active)
-rw-r--r-- | sys/src/cmd/ip/cifsd/smb.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/src/cmd/ip/cifsd/smb.c b/sys/src/cmd/ip/cifsd/smb.c index c4bedda6c..8097ecb1c 100644 --- a/sys/src/cmd/ip/cifsd/smb.c +++ b/sys/src/cmd/ip/cifsd/smb.c @@ -1761,7 +1761,6 @@ struct { 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); |