Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 301499
Collapse All | Expand All

(-)dkim-rep.c (-3 / +3 lines)
Lines 4-14 Link Here
4
**
4
**
5
**  Copyright (c) 2009, The OpenDKIM Project.  All rights reserved.
5
**  Copyright (c) 2009, The OpenDKIM Project.  All rights reserved.
6
**
6
**
7
**  $Id: dkim-rep.c,v 1.6 2009/11/22 08:15:50 grooverdan Exp $
7
**  $Id: dkim-rep.c,v 1.6.4.1 2010/01/20 21:59:36 cm-msk Exp $
8
*/
8
*/
9
9
10
#ifndef lint
10
#ifndef lint
11
static char dkim_rep_c_id[] = "@(#)$Id: dkim-rep.c,v 1.6 2009/11/22 08:15:50 grooverdan Exp $";
11
static char dkim_rep_c_id[] = "@(#)$Id: dkim-rep.c,v 1.6.4.1 2010/01/20 21:59:36 cm-msk Exp $";
12
#endif /* !lint */
12
#endif /* !lint */
13
13
14
#include "build-config.h"
14
#include "build-config.h"
Lines 87-93 Link Here
87
		snprintf((char *) cvt, len, "%02x", digest[c]);
87
		snprintf((char *) cvt, len, "%02x", digest[c]);
88
		cvt += 2;
88
		cvt += 2;
89
		out += 2;
89
		out += 2;
90
		len -= out;
90
		len -= 2;
91
	}
91
	}
92
92
93
	return out;
93
	return out;

Return to bug 301499