aboutsummaryrefslogtreecommitdiff
path: root/src/portal.cc
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2006-05-04 16:26:41 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2006-05-04 16:26:41 +0000
commit1c7e5345e2ce8e66d9ef191ad2f2e587734b50a5 (patch)
treea318b9d37737b7c0efe019efb768d328d471af99 /src/portal.cc
parentcc2ee658d8cc0352da45788eb2fce0315e1cd49a (diff)
Use Perl instead of C for makeblob and makemetablob.
Begin coupling Formaline to thorn Announce. Create stamp files that record which build and which simulation was run in the output directory. Begin implementing talking to an RDF server. Determine the host name in Perl, which is more reliable. (It is complicated to find a good host name.) git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@75 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'src/portal.cc')
-rw-r--r--src/portal.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/portal.cc b/src/portal.cc
index b5f79a9..e2acea5 100644
--- a/src/portal.cc
+++ b/src/portal.cc
@@ -30,7 +30,7 @@ namespace Formaline
static bool
- is_clean_for_shell (char const * string);
+ is_clean_for_shell (char const * str);
@@ -398,9 +398,9 @@ namespace Formaline
static bool
- is_clean_for_shell (char const * const string)
+ is_clean_for_shell (char const * const str)
{
- for (char const * p = string; * p; ++ p)
+ for (char const * p = str; * p; ++ p)
{
if (! isalnum (* p))
{