mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
0e9073a57e
[2] Add PAM support to gnatsd PR: [1] ports/41342 Submitted by: [1] Igor Kucherenko <kivvy@sunbay.com> [2] ru
16 lines
532 B
C
16 lines
532 B
C
--- gnats/cmds.c.orig Sun Feb 4 22:56:10 2001
|
|
+++ gnats/cmds.c Mon Aug 5 17:25:48 2002
|
|
@@ -476,9 +476,9 @@
|
|
|
|
if (user_access <= ACCESS_NONE)
|
|
{
|
|
- syslog (LOG_ERR, "user not allowed access: %s/%s", av[0], av[1]);
|
|
- printf ("%d You are not on the user access list: %s/%s.\r\n",
|
|
- CODE_NO_ACCESS, av[0], av[1]);
|
|
+ syslog (LOG_ERR, "user %s not allowed access", av[0]);
|
|
+ printf ("%d You are not on the user access list.\r\n",
|
|
+ CODE_NO_ACCESS, av[0]);
|
|
exit (1);
|
|
}
|
|
|