From b008274afdbe375b32a7e66dbd073e200f6f0587 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Fri, 4 Feb 2011 12:57:53 +0100 Subject: Nuked almost all trailing white space. We better do this once and for all instead of cluttering all future commits with diffs of trailing white spaces. In the majority of cases blank or single lines are affected and thus this change won't disturb a git blame too much. For future commits the pre-commit scripts checks that this won't happen again. --- kbx/keybox-init.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'kbx/keybox-init.c') diff --git a/kbx/keybox-init.c b/kbx/keybox-init.c index c364277e3..60594e313 100644 --- a/kbx/keybox-init.c +++ b/kbx/keybox-init.c @@ -1,4 +1,4 @@ -/* keybox-init.c - Initalization of the library +/* keybox-init.c - Initalization of the library * Copyright (C) 2001 Free Software Foundation, Inc. * * This file is part of GnuPG. @@ -59,7 +59,7 @@ keybox_register_file (const char *fname, int secret) /* keep a list of all issued pointers */ kr->next = kb_names; kb_names = kr; - + /* create the offset table the first time a function here is used */ /* if (!kb_offtbl) */ /* kb_offtbl = new_offset_hash_table (); */ @@ -75,11 +75,11 @@ keybox_is_writable (void *token) return r? !access (r->fname, W_OK) : 0; } - + /* Create a new handle for the resource associated with TOKEN. SECRET is just a cross-check. - + The returned handle must be released using keybox_release (). */ KEYBOX_HANDLE keybox_new (void *token, int secret) @@ -118,7 +118,7 @@ keybox_new (void *token, int secret) size_t newsize; newsize = resource->handle_table_size + 5; - tmptbl = xtryrealloc (resource->handle_table, + tmptbl = xtryrealloc (resource->handle_table, newsize * sizeof (*tmptbl)); if (!tmptbl) { @@ -135,7 +135,7 @@ keybox_new (void *token, int secret) return hd; } -void +void keybox_release (KEYBOX_HANDLE hd) { if (!hd) @@ -171,7 +171,7 @@ int keybox_set_ephemeral (KEYBOX_HANDLE hd, int yes) { if (!hd) - return gpg_error (GPG_ERR_INV_HANDLE); + return gpg_error (GPG_ERR_INV_HANDLE); hd->ephemeral = yes; return 0; } @@ -180,7 +180,7 @@ keybox_set_ephemeral (KEYBOX_HANDLE hd, int yes) /* Close the file of the resource identified by HD. For consistent results this fucntion closes the files of all handles pointing to the resource identified by HD. */ -void +void _keybox_close_file (KEYBOX_HANDLE hd) { int idx; -- cgit v1.2.3