Split definitions for md5.c out of crypt.h and into their own header
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 20 Jun 2006 19:56:52 +0000 (19:56 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 20 Jun 2006 19:56:52 +0000 (19:56 +0000)
commit03cdfe8ac628444c387187ac7c36511be67f6013
treee93b2d57fd65ff1b72ab1714f5f0e29188d3cbe8
parentb3185bed98b593ada527950aeef5e2b7f292e8fb
Split definitions for md5.c out of crypt.h and into their own header
libpq/md5.h, so that there's a clear separation between backend-only
definitions and shared frontend/backend definitions.  (Turns out this
is reversing a bad decision from some years ago...)  Fix up references
to crypt.h as needed.  I looked into moving the code into src/port, but
the headers in src/include/libpq are sufficiently intertwined that it
seems more work than it's worth to do that.
src/backend/commands/user.c
src/backend/libpq/crypt.c
src/backend/libpq/hba.c
src/backend/libpq/ip.c
src/backend/libpq/md5.c
src/backend/utils/adt/varlena.c
src/include/libpq/crypt.h
src/include/libpq/ip.h
src/include/libpq/md5.h [new file with mode: 0644]
src/interfaces/libpq/fe-auth.c