1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-19 13:42:17 +03:00

Final cleanup.

This commit is contained in:
Bruce Momjian
1999-07-16 05:00:38 +00:00
parent 9b645d481c
commit a71802e12e
210 changed files with 833 additions and 907 deletions

View File

@@ -1,19 +1,21 @@
/*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: password.c,v 1.23 1999/07/15 23:03:14 momjian Exp $
* $Id: password.c,v 1.24 1999/07/16 04:59:01 momjian Exp $
*
*/
#include "postgres.h"
#include "miscadmin.h"
#include "libpq/password.h"
#include "libpq/libpq.h"
#include <string.h>
#include <unistd.h>
#include "postgres.h"
#ifdef HAVE_CRYPT_H
#include "crypt.h"
#endif
#include "libpq/libpq.h"
#include "libpq/password.h"
#include "miscadmin.h"
int
verify_password(char *auth_arg, char *user, char *password)
{