~ubuntu-branches/ubuntu/dapper/elog/dapper

« back to all changes in this revision

Viewing changes to mxml/strlcpy.h

  • Committer: Bazaar Package Importer
  • Author(s): Recai Oktaş
  • Date: 2006-01-27 10:27:44 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060127102744-snypbjuxulaxzpvf
Tags: 2.6.1+r1642-1
* New upstream release grabbed from Subversion (r1642).
  + Really fix the security issue CVE-2005-4439.
* Sigh!  Previous upload has some flaws:
  + Install elcode.js and other resoure files.  ElCode editor buttons
    should work now (thanks David Prince).
  + debian/update: Modify it to catch such sort of errors.
  + Really remove debian/watch.
  + Fix the pbuilder DEBEMAIL field which made the previous upload appear 
    as an NMU.
* Add a Debian spesific note about the usage of password files in Elog.
* Urgency set to critical for security fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
   Contents:     Header file for strlcpy.c
7
7
 
8
 
   $Log: strlcpy.h,v $
9
 
   Revision 1.1  2005/05/09 09:12:06  ritt
10
 
   Initial revision
 
8
   $Id: strlcpy.h 33 2005-10-24 07:56:51Z ritt $
11
9
 
12
10
\********************************************************************/
13
11
 
 
12
#ifdef __cplusplus
 
13
extern "C" {
 
14
#endif
 
15
 
14
16
#ifndef EXPRT
15
17
#if defined(EXPORT_DLL)
16
18
#define EXPRT __declspec(dllexport)
21
23
 
22
24
size_t EXPRT strlcpy(char *dst, const char *src, size_t size);
23
25
size_t EXPRT strlcat(char *dst, const char *src, size_t size);
 
26
 
 
27
#ifdef __cplusplus
 
28
}
 
29
#endif