Fix path to false(1).

This commit is contained in:
ajacoutot 2013-12-17 08:20:04 +00:00
parent 1d499fad74
commit 3c786f247f
2 changed files with 11 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.49 2013/12/11 16:11:19 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.50 2013/12/17 08:20:04 ajacoutot Exp $
# XXX fix change password (gnome-cc run-passwd.c: argv[0])
@ -6,7 +6,7 @@ COMMENT= D-Bus interface for user account query and manipulation
DISTNAME= accountsservice-0.6.35
EXTRACT_SUFX= .tar.xz
REVISION= 0
REVISION= 1
SHARED_LIBS += accountsservice 0.0 # 0.0

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-src_user-classify_c,v 1.1 2013/10/16 08:44:37 ajacoutot Exp $
$OpenBSD: patch-src_user-classify_c,v 1.2 2013/12/17 08:20:04 ajacoutot Exp $
Add all ports and system users that have a login shell.
--- src/user-classify.c.orig Wed Oct 16 10:35:26 2013
+++ src/user-classify.c Wed Oct 16 10:36:36 2013
@@ -54,7 +54,20 @@ static const char *default_excludes[] = {
--- src/user-classify.c.orig Tue Oct 15 22:25:19 2013
+++ src/user-classify.c Tue Dec 17 09:19:06 2013
@@ -54,11 +54,24 @@ static const char *default_excludes[] = {
"man",
"at",
"gdm",
@ -26,3 +26,8 @@ Add all ports and system users that have a login shell.
};
#define PATH_NOLOGIN "/sbin/nologin"
-#define PATH_FALSE "/bin/false"
+#define PATH_FALSE "/usr/bin/false"
static gboolean
user_classify_is_excluded_by_heuristics (const gchar *username,