c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweLinux / FreeBSD have a convenience function to determining whether there
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Loweis a local-specific "positive" value in a variable (rpmatch). Solaris
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowedoes not have this.
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweNeed to file a Solaris bug?
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe--- gnome-session-3.16.0/gnome-session/main.c 2015-02-17 11:53:01.000000000 -0800
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe+++ gnome-session-3.16.0/gnome-session/main.c 2015-07-06 22:49:12.668481062 -0700
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe@@ -260,7 +260,7 @@
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe debug_string = g_getenv ("GNOME_SESSION_DEBUG");
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe if (debug_string != NULL) {
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe- debug = rpmatch (debug_string) == TRUE || atoi (debug_string) == 1;
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe+ debug = atoi (debug_string) == 1;
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe error = NULL;