aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-06-03 12:11:08 +0000
committergoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-06-03 12:11:08 +0000
commitc6ce2e1b092bd64efd5d6138b715dfe2ab3c7a91 (patch)
tree35bf847a6a26241fb1c58b9cc7eb27a076646368
parentcd41743699398de3520da6b47dedc9970ba5c138 (diff)
Making it compile on machines with no crypt function again.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@212 1faa4e14-9dd3-4be0-9f0e-ffe519881164
-rw-r--r--src/Authorisation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Authorisation.c b/src/Authorisation.c
index 42529be..bec292b 100644
--- a/src/Authorisation.c
+++ b/src/Authorisation.c
@@ -342,7 +342,7 @@ static int VerifyPassword(const char *database,
retcode = 1;
}
#else
- CCTK_WARN( 1, "Sorry, crypt(3) not supported in this configuration.\n" )
+ CCTK_WARN( 1, "Sorry, crypt(3) not supported in this configuration.\n" );
#endif
}
else