diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1993-12-03 16:54:45 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1993-12-03 16:54:45 (GMT) |
commit | 66bca326cb727dbf42ac6ac613f0d76dd52ef905 (patch) | |
tree | 24b652ae1ded6b91c45a0ac25564d6a78cacf326 /Modules/md5module.c | |
parent | 57531fea90ca0afe9efdc70d3dce1a3eb153f03e (diff) | |
download | cpython-66bca326cb727dbf42ac6ac613f0d76dd52ef905.zip cpython-66bca326cb727dbf42ac6ac613f0d76dd52ef905.tar.gz cpython-66bca326cb727dbf42ac6ac613f0d76dd52ef905.tar.bz2 |
Port to Solaris 2.3.
Diffstat (limited to 'Modules/md5module.c')
-rw-r--r-- | Modules/md5module.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Modules/md5module.c b/Modules/md5module.c index 8bfbafb..6230cee 100644 --- a/Modules/md5module.c +++ b/Modules/md5module.c @@ -41,8 +41,6 @@ extern typeobject MD5type; /* Really static, forward */ #define is_md5object(v) ((v)->ob_type == &MD5type) -static const char initialiser_name[] = "md5"; - /* #define MD5_DEBUG */ static md5object * @@ -207,7 +205,7 @@ typeobject MD5type = { /* List of functions exported by this module */ static struct methodlist md5_functions[] = { - {initialiser_name, MD5_md5}, + {"md5", MD5_md5}, {NULL, NULL} /* Sentinel */ }; |