View | Details | Raw Unified | Return to bug 30250
Collapse All | Expand All

(-)pam_opie.c (-2 / +3 lines)
Lines 118-124 Link Here
118
	 * it expects.  Thus we can't log an error and can only check for
118
	 * it expects.  Thus we can't log an error and can only check for
119
	 * success or lack thereof.
119
	 * success or lack thereof.
120
	 */
120
	 */
121
	PAM_RETURN(opieverify(&opie, resp) == 0 ? PAM_SUCCESS : PAM_AUTH_ERR);
121
	retval = (opieverify(&opie, resp) == 0 ? PAM_SUCCESS : PAM_AUTH_ERR);
122
	PAM_RETURN(retval);
122
}
123
}
123
124
124
PAM_EXTERN int
125
PAM_EXTERN int
Lines 126-132 Link Here
126
{
127
{
127
	struct options options;
128
	struct options options;
128
129
129
	pam_std_option(&options, NULL, argc, argv);
130
	pam_std_option(&options, other_options, argc, argv);
130
131
131
	PAM_LOG("Options processed");
132
	PAM_LOG("Options processed");

Return to bug 30250