summaryrefslogtreecommitdiff
path: root/src/mongo/util/md5main.cpp
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2012-10-15 01:51:29 -0400
committerEliot Horowitz <eliot@10gen.com>2012-10-15 18:07:06 -0400
commit3a15fac7d854802c99ed287ba2d8f0bd6d09212b (patch)
treedb58f0580014d508b5dd2cc9fba49029349fa81e /src/mongo/util/md5main.cpp
parent1c33a98ebf1a0caa5694fcc9a026bf1949c92f65 (diff)
downloadmongo-3a15fac7d854802c99ed287ba2d8f0bd6d09212b.tar.gz
hookup google cpplint, and make "scons lint" run the checks we pass on now
including a few that i made pass
Diffstat (limited to 'src/mongo/util/md5main.cpp')
-rw-r--r--src/mongo/util/md5main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mongo/util/md5main.cpp b/src/mongo/util/md5main.cpp
index 9995fee8fa7..107252aad63 100644
--- a/src/mongo/util/md5main.cpp
+++ b/src/mongo/util/md5main.cpp
@@ -51,12 +51,12 @@
* to the MD5 library. Typical compilation:
* gcc -o md5main -lm md5main.c md5.c
*/
-static const char *const usage = "\
-Usage:\n\
- md5main --test # run the self-test (A.5 of RFC 1321)\n\
- md5main --t-values # print the T values for the library\n\
- md5main --version # print the version of the package\n\
-";
+static const char *const usage =
+ "Usage:\n"
+ " md5main --test # run the self-test (A.5 of RFC 1321)\n "
+ " md5main --t-values # print the T values for the library\n "
+ " md5main --version # print the version of the package\n ";
+
static const char *const version = "2002-04-13";
/* modified: not static, renamed */