forked from s3fs-fuse/s3fs-fuse
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed the display format of the Git commit hash in the version display
- Loading branch information
Showing
4 changed files
with
25 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -653,7 +653,7 @@ void show_help() | |
void show_version() | ||
{ | ||
printf( | ||
"Amazon Simple Storage Service File System V%s (commit:%s) with %s\n" | ||
"Amazon Simple Storage Service File System V%s%s with %s\n" | ||
"Copyright (C) 2010 Randy Rizun <[email protected]>\n" | ||
"License GPL2: GNU GPL version 2 <https://gnu.org/licenses/gpl.html>\n" | ||
"This is free software: you are free to change and redistribute it.\n" | ||
|
@@ -663,7 +663,7 @@ void show_version() | |
|
||
const char* short_version() | ||
{ | ||
static constexpr char short_ver[] = "s3fs version " VERSION "(" COMMIT_HASH_VAL ")"; | ||
static constexpr char short_ver[] = "s3fs version " VERSION "" COMMIT_HASH_VAL; | ||
return short_ver; | ||
} | ||
|
||
|