Constify the msg field of struct pam_message, and realign.

git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@263 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2003-07-14 14:15:45 +00:00
parent 922d9cb144
commit 620f3bf045
1 changed files with 11 additions and 11 deletions

View File

@ -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#11 $
* $P4: //depot/projects/openpam/include/security/pam_types.h#12 $
*/
#ifndef _PAM_TYPES_H_INCLUDED
@ -48,7 +48,7 @@ extern "C" {
*/
struct pam_message {
int msg_style;
char *msg;
const char *msg;
};
struct pam_response {