aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-04-10 14:42:29 +0000
committerlloyd <[email protected]>2008-04-10 14:42:29 +0000
commit0a187013a1a2f1ff5a067041fabf257839fb13ae (patch)
tree81ccb028f87185ab727cf18bc258f40ff63c9a77 /src/modules.cpp
parente540b08fcc5ccf5c56093a278a417b274eda0ae6 (diff)
Wrap lines to 80 columns
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index dc7dc917f..51dc362fd 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -158,12 +158,17 @@ std::vector<EntropySource*> Builtin_Modules::entropy_sources() const
#endif
#if defined(BOTAN_EXT_ENTROPY_SRC_EGD)
- sources.push_back(new EGD_EntropySource(split_on("/var/run/egd-pool:/dev/egd-pool", ':')));
+ sources.push_back(
+ new EGD_EntropySource(split_on("/var/run/egd-pool:/dev/egd-pool", ':'))
+ );
#endif
#if defined(BOTAN_EXT_ENTROPY_SRC_DEVICE)
sources.push_back(
- new Device_EntropySource(split_on("/dev/random:/dev/srandom:/dev/urandom", ':')));
+ new Device_EntropySource(
+ split_on("/dev/random:/dev/srandom:/dev/urandom", ':')
+ )
+ );
#endif
#if defined(BOTAN_EXT_ENTROPY_SRC_CAPI)
@@ -175,7 +180,9 @@ std::vector<EntropySource*> Builtin_Modules::entropy_sources() const
#endif
#if defined(BOTAN_EXT_ENTROPY_SRC_UNIX)
- sources.push_back(new Unix_EntropySource(split_on("/bin:/sbin:/usr/bin:/usr/sbin", ':')));
+ sources.push_back(
+ new Unix_EntropySource(split_on("/bin:/sbin:/usr/bin:/usr/sbin", ':'))
+ );
#endif
#if defined(BOTAN_EXT_ENTROPY_SRC_BEOS)