removed trailing spaces ([[:space:]]+$)

This commit is contained in:
Martin Willi
2009-09-04 13:46:09 +02:00
parent 7d1b030446
commit 7daf5226b7
703 changed files with 10633 additions and 10633 deletions
+6 -6
View File
@@ -34,11 +34,11 @@ struct integrity_checksum_t {
/* name of the checksum */
char *name;
/* size in bytes of the file on disk */
size_t file_len;
size_t file_len;
/* checksum of the file on disk */
u_int32_t file;
/* size in bytes of executable segment in memory */
size_t segment_len;
size_t segment_len;
/* checksum of the executable segment in memory */
u_int32_t segment;
};
@@ -59,7 +59,7 @@ struct integrity_checker_t {
* @return TRUE if integrity tested successfully
*/
bool (*check_file)(integrity_checker_t *this, char *name, char *file);
/**
* Build the integrity checksum of a file on disk.
*
@@ -68,7 +68,7 @@ struct integrity_checker_t {
* @return checksum, 0 on error
*/
u_int32_t (*build_file)(integrity_checker_t *this, char *file, size_t *len);
/**
* Check the integrity of the code segment in memory.
*
@@ -85,7 +85,7 @@ struct integrity_checker_t {
* @return checksum, 0 on error
*/
u_int32_t (*build_segment)(integrity_checker_t *this, void *sym, size_t *len);
/**
* Check both, on disk file integrity and loaded segment.
*
@@ -94,7 +94,7 @@ struct integrity_checker_t {
* @return TRUE if integrity tested successfully
*/
bool (*check)(integrity_checker_t *this, char *name, void *sym);
/**
* Destroy a integrity_checker_t.
*/