Bug 215845

Summary: Syntax error at setcap.c
Product: Tools Reporter: yixiangzhike (yixiangzhike007)
Component: libcapAssignee: Andrew G. Morgan (morgan)
Status: RESOLVED CODE_FIX    
Severity: normal CC: morgan
Priority: P1    
Hardware: All   
OS: Linux   
Kernel Version: 2.61 Subsystem:
Regression: No Bisected commit-id:
Attachments: Fix code syntax error in setcap.c

Description yixiangzhike 2022-04-17 05:19:16 UTC
When you build with DEBUG macro for libcap, i take this errors:

setcap.c: In function 'main':
setcap.c:179:19: error: expected ';' before '}' token
  179 |   cap_free(result)
      |                   ^
      |                   ;
  180 |      }
      |      ~             
make[1]: *** [Makefile:34: setcap.o] Error 1
make[1]: Leaving directory '/root/rpmbuild/BUILD/libcap-2.61/progs'
make: *** [Makefile:15: all] Error 2

At progs/setcap.c line: 179
cap_free(result)

Statement missing ';'.
It shoud be "cap_free(result);"
Comment 1 yixiangzhike 2022-04-17 05:41:38 UTC
Created attachment 300767 [details]
Fix code syntax error in setcap.c