Skip to content

Commit

Permalink
Merge pull request #11 from mariux64/add-two-more-placeholders-for-be…
Browse files Browse the repository at this point in the history
…eversion

Add two additional format placeholders for beeversion
  • Loading branch information
donald authored Aug 19, 2016
2 parents cc8e400 + 8358f85 commit 04365dd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/bee_version_output.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ void print_format(char* s, struct beeversion *v, char *filter_pkgfullname)
case 'e':
printf("%s", v->extraversion);
break;
case 'E':
printf("_%s", v->extraversion);
break;
case 'd':
printf("-%s", v->extraversion);
break;
case 'r':
printf("%s", v->pkgrevision);
break;
Expand Down

0 comments on commit 04365dd

Please sign in to comment.