Bug 215845 - Syntax error at setcap.c
Summary: Syntax error at setcap.c
Status: RESOLVED CODE_FIX
Alias: None
Product: Tools
Classification: Unclassified
Component: libcap (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: Andrew G. Morgan
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-04-17 05:19 UTC by yixiangzhike
Modified: 2022-04-17 13:51 UTC (History)
1 user (show)

See Also:
Kernel Version: 2.61
Subsystem:
Regression: No
Bisected commit-id:


Attachments
Fix code syntax error in setcap.c (678 bytes, patch)
2022-04-17 05:41 UTC, yixiangzhike
Details | Diff

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

Note You need to log in before you can comment on or make changes to this bug.