~ubuntu-branches/debian/lenny/freetds/lenny

« back to all changes in this revision

Viewing changes to include/md4.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2008-08-02 11:49:53 UTC
  • mfrom: (2.1.10 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080802114953-0qdeowgl63k42n2c
Tags: 0.82-4
* Fix a typo in the freetds-common description, ugh
* Versioned replaces of libct4 by freetds-common, since the current one
  obviously doesn't have overlapping files.
* tdsodbc: check for /var/lib/odbc existence before removing it in the
  postinst, since there are cases where it won't exist on upgrade (i.e.,
  if the driver was never enabled in the first place).  Closes: #493303.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef MD4_H
2
2
#define MD4_H
3
3
 
4
 
static const char rcsid_md4_h[] = "$Id: md4.h,v 1.5 2004/10/28 12:42:12 freddy77 Exp $";
5
 
static const void *const no_unused_md4_h_warn[] = { rcsid_md4_h, no_unused_md4_h_warn };
 
4
/* $Id: md4.h,v 1.7 2007/03/12 13:28:50 freddy77 Exp $ */
 
5
 
 
6
#if defined(__GNUC__) && __GNUC__ >= 4
 
7
#pragma GCC visibility push(hidden)
 
8
#endif
6
9
 
7
10
struct MD4Context
8
11
{
18
21
 
19
22
typedef struct MD4Context MD4_CTX;
20
23
 
 
24
#if defined(__GNUC__) && __GNUC__ >= 4
 
25
#pragma GCC visibility pop
 
26
#endif
 
27
 
21
28
#endif /* !MD4_H */