diff options
author | foxfair <foxfair@FreeBSD.org> | 2003-07-29 00:26:29 +0800 |
---|---|---|
committer | foxfair <foxfair@FreeBSD.org> | 2003-07-29 00:26:29 +0800 |
commit | 6ac19030b96980a17cc1e370c66e3a6b8e9f5b32 (patch) | |
tree | 371d1c2c5391c91319b68209f7e96c2812134569 /security/authpf | |
parent | 24cf76c8a642d7c8f50dbe2aaa1bbd748fb523ad (diff) | |
download | freebsd-ports-graphics-6ac19030b96980a17cc1e370c66e3a6b8e9f5b32.tar.gz freebsd-ports-graphics-6ac19030b96980a17cc1e370c66e3a6b8e9f5b32.tar.zst freebsd-ports-graphics-6ac19030b96980a17cc1e370c66e3a6b8e9f5b32.zip |
Submitted by: "Pyun YongHyeon" <yongari@kt-is.co.kr>
Reviewed by: maintainer
Fix a build problem in bento.
Diffstat (limited to 'security/authpf')
-rw-r--r-- | security/authpf/Makefile | 2 | ||||
-rw-r--r-- | security/authpf/pkg-install | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/security/authpf/Makefile b/security/authpf/Makefile index e50e5f9387c..a978165efe2 100644 --- a/security/authpf/Makefile +++ b/security/authpf/Makefile @@ -7,7 +7,7 @@ PORTNAME= authpf PORTVERSION= 1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security ipv6 MASTER_SITES= http://pf4freebsd.love2party.net/ .if defined(WITH_ALTQ) && (${WITH_ALTQ} == "yes") diff --git a/security/authpf/pkg-install b/security/authpf/pkg-install index f587ed19060..3c4b8c54494 100644 --- a/security/authpf/pkg-install +++ b/security/authpf/pkg-install @@ -56,7 +56,7 @@ check_group() { #check # We need a command 'pw(8)' check_pw - if pw groupshow $name -q ; then + if pw groupshow -n $name > /dev/null ; then return 0 fi if pw groupadd -g $id -n $name -N -q ; then |