Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Jul 2003 12:53:34 -0700 (PDT)
From:      Dag-Erling Smorgrav <des@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 34785 for review
Message-ID:  <200307211953.h6LJrYIg060819@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=34785

Change 34785 by des@des.at.des.thinksec.com on 2003/07/21 12:52:56

	Revert the previous commit.  It seemed like a good idea at the time,
	but it breaks at least one module in -CURRENT.

Affected files ...

.. //depot/projects/openpam/include/security/pam_types.h#13 edit

Differences ...

==== //depot/projects/openpam/include/security/pam_types.h#13 (text+ko) ====

@@ -31,7 +31,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $P4: //depot/projects/openpam/include/security/pam_types.h#12 $
+ * $P4: //depot/projects/openpam/include/security/pam_types.h#13 $
  */
 
 #ifndef _PAM_TYPES_H_INCLUDED
@@ -47,22 +47,22 @@
  * XSSO 5.1.1
  */
 struct pam_message {
-	int		 msg_style;
-	const char	*msg;
+	int	 msg_style;
+	char	*msg;
 };
 
 struct pam_response {
-	char		*resp;
-	int		 resp_retcode;
+	char	*resp;
+	int	 resp_retcode;
 };
 
 /*
  * XSSO 5.1.2
  */
 struct pam_conv {
-	int		(*conv)(int, const struct pam_message **,
-			    struct pam_response **, void *);
-	void		*appdata_ptr;
+	int	(*conv)(int, const struct pam_message **,
+	    struct pam_response **, void *);
+	void	*appdata_ptr;
 };
 
 /*
@@ -75,9 +75,9 @@
  * Solaris 9
  */
 typedef struct pam_repository {
-	char		*type;
-	void		*scope;
-	size_t		 scope_len;
+	char	*type;
+	void	*scope;
+	size_t	scope_len;
 } pam_repository_t;
 
 #ifdef __cplusplus



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200307211953.h6LJrYIg060819>