diff --git a/s3fs/src/Makefile.am b/s3fs/src/Makefile.am index 9417577..224324e 100644 --- a/s3fs/src/Makefile.am +++ b/s3fs/src/Makefile.am @@ -2,6 +2,6 @@ bin_PROGRAMS=s3fs AM_CPPFLAGS = $(DEPS_CFLAGS) -s3fs_SOURCES = s3fs.cpp string_util.cpp +s3fs_SOURCES = s3fs.cpp s3fs.h string_util.cpp string_util.h s3fs_LDADD = $(DEPS_LIBS) diff --git a/s3fs/src/s3fs.cpp b/s3fs/src/s3fs.cpp index 6b1543b..dd03f6e 100644 --- a/s3fs/src/s3fs.cpp +++ b/s3fs/src/s3fs.cpp @@ -1624,7 +1624,7 @@ int main(int argc, char *argv[]) { for (int i = 1; i < argc; ++i) { if (strcmp(argv[i], "--version") == 0) { - cout << "Amazon Simple Storage Service File System " << VERSION << endl; + cout << "Amazon Simple Storage Service File System " << VERSION << endl; cout << "Copyright (C) 2010 Randy Rizun " << endl; cout << "License GPL2: GNU GPL version 2 " << endl; cout << "This is free software: you are free to change and redistribute it." << endl;