mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Fix a compilation error if S/Key support is disabled.
Submitted by: Hoss Firooznia
This commit is contained in:
parent
196eae9877
commit
5365424c25
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=6105
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@
|
||||||
! pass_ok ? "" : " (required)"));
|
! pass_ok ? "" : " (required)"));
|
||||||
}
|
}
|
||||||
+ #else
|
+ #else
|
||||||
+ if (strcmp(crypt(p->pop_parm[1], pw->pw_passwd)))
|
+ if (strcmp(crypt(p->pop_parm[1], pw->pw_passwd), pw->pw_passwd))
|
||||||
+ goto error;
|
+ goto error;
|
||||||
+ #endif
|
+ #endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue