diff options
| author | Bruce Momjian <bruce@momjian.us> | 2001-11-15 03:12:53 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2001-11-15 03:12:53 +0000 |
| commit | 1edbd62cac51376384ca2786be85fbbe0cbe7dbb (patch) | |
| tree | 8c291a3ee639ef44a07517b58d5952607f57b63c /src/interfaces | |
| parent | 09f19de62ce0d3c4e08a9bc907b778e5fb14eb8f (diff) | |
| download | postgresql-1edbd62cac51376384ca2786be85fbbe0cbe7dbb.tar.gz | |
Fix comment at top of file to match file name.
Diffstat (limited to 'src/interfaces')
| -rw-r--r-- | src/interfaces/odbc/md5.h | 96 |
1 files changed, 48 insertions, 48 deletions
diff --git a/src/interfaces/odbc/md5.h b/src/interfaces/odbc/md5.h index faaf21682c..9b5b0e3396 100644 --- a/src/interfaces/odbc/md5.h +++ b/src/interfaces/odbc/md5.h @@ -1,52 +1,52 @@ -/* File: connection.h
- *
- * Description: See "connection.c"
- *
- * Comments: See "notice.txt" for copyright and license information.
- *
- */
-
-#ifndef __MD5_H__
-#define __MD5_H__
-
-#include "psqlodbc.h"
-
-#include <stdlib.h>
-#include <string.h>
-
+/* File: connection.h + * + * Description: See "md.h" + * + * Comments: See "notice.txt" for copyright and license information. + * + */ + +#ifndef __MD5_H__ +#define __MD5_H__ + +#include "psqlodbc.h" + +#include <stdlib.h> +#include <string.h> + #ifdef WIN32 #define MD5_ODBC #define FRONTEND #endif -#define MD5_PASSWD_LEN 35
-
-/* From c.h */
-#ifndef __BEOS__
-
-#ifndef __cplusplus
-
-#ifndef bool
-typedef char bool;
-#endif
-
-#ifndef true
-#define true ((bool) 1)
-#endif
-
-#ifndef false
-#define false ((bool) 0)
-#endif
-#endif /* not C++ */
-#endif /* __BEOS__ */
-
-#ifndef __BEOS__ /* this shouldn't be required, but is is! */
-typedef unsigned char uint8; /* == 8 bits */
-typedef unsigned short uint16; /* == 16 bits */
-typedef unsigned int uint32; /* == 32 bits */
-#endif /* __BEOS__ */
-
-extern bool EncryptMD5(const char *passwd, const char *salt,
- size_t salt_len, char *buf);
-
-
-#endif
+#define MD5_PASSWD_LEN 35 + +/* From c.h */ +#ifndef __BEOS__ + +#ifndef __cplusplus + +#ifndef bool +typedef char bool; +#endif + +#ifndef true +#define true ((bool) 1) +#endif + +#ifndef false +#define false ((bool) 0) +#endif +#endif /* not C++ */ +#endif /* __BEOS__ */ + +#ifndef __BEOS__ /* this shouldn't be required, but is is! */ +typedef unsigned char uint8; /* == 8 bits */ +typedef unsigned short uint16; /* == 16 bits */ +typedef unsigned int uint32; /* == 32 bits */ +#endif /* __BEOS__ */ + +extern bool EncryptMD5(const char *passwd, const char *salt, + size_t salt_len, char *buf); + + +#endif |
