From cb506f9b91fb20c46a1f7bdea940672cb8c0fdf7 Mon Sep 17 00:00:00 2001 From: Vijay Bellur Date: Fri, 30 Nov 2012 12:11:02 +0530 Subject: encryption/rot-13: Cleanup trailing whitespaces Change-Id: I9f5c81ca4320b6e73087023102dff6e3911b5095 BUG: 764890 Signed-off-by: Vijay Bellur Reviewed-on: http://review.gluster.org/4251 Reviewed-by: Anand Avati Tested-by: Anand Avati --- xlators/encryption/rot-13/src/rot-13.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'xlators') diff --git a/xlators/encryption/rot-13/src/rot-13.c b/xlators/encryption/rot-13/src/rot-13.c index ba7d88a5f1e..c475e5cb585 100644 --- a/xlators/encryption/rot-13/src/rot-13.c +++ b/xlators/encryption/rot-13/src/rot-13.c @@ -22,13 +22,13 @@ #include "rot-13.h" /* - * This is a rot13 ``encryption'' xlator. It rot13's data when - * writing to disk and rot13's it back when reading it. + * This is a rot13 ``encryption'' xlator. It rot13's data when + * writing to disk and rot13's it back when reading it. * This xlator is meant as an example, NOT FOR PRODUCTION * USE ;) (hence no error-checking) */ -void +void rot13 (char *buf, int len) { int i; @@ -61,7 +61,7 @@ rot13_readv_cbk (call_frame_t *frame, struct iobref *iobref, dict_t *xdata) { rot_13_private_t *priv = (rot_13_private_t *)this->private; - + if (priv->decrypt_read) rot13_iovec (vector, count); @@ -128,7 +128,7 @@ init (xlator_t *this) rot_13_private_t *priv = NULL; if (!this->children || this->children->next) { - gf_log ("rot13", GF_LOG_ERROR, + gf_log ("rot13", GF_LOG_ERROR, "FATAL: rot13 should have exactly one child"); return -1; } @@ -190,11 +190,11 @@ struct xlator_cbks cbks = { }; struct volume_options options[] = { - { .key = {"encrypt-write"}, + { .key = {"encrypt-write"}, .type = GF_OPTION_TYPE_BOOL }, - { .key = {"decrypt-read"}, - .type = GF_OPTION_TYPE_BOOL + { .key = {"decrypt-read"}, + .type = GF_OPTION_TYPE_BOOL }, { .key = {NULL} }, }; -- cgit