Skip to content

Commit

Permalink
Minor fix on Makefile and added software authorship.
Browse files Browse the repository at this point in the history
  • Loading branch information
boos committed Jan 25, 2016
1 parent a33b4fd commit 433b777
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -7,7 +7,7 @@ INC = -Iinclude

all: bluesnarfer

bluesnarfer:
bluesnarfer: src/bluesnarfer.c
$(CC) $(INC) $(CFLAGS) $(SRC)/bluesnarfer.c $(LDFLAGS) -o bluesnarfer

clean:
Expand Down
5 changes: 3 additions & 2 deletions src/bluesnarfer.c
Expand Up @@ -165,7 +165,7 @@ int bluesnarfer(struct opt options) {

void usage(char *bin) {

fprintf(stderr, "bluesnarfer, version %s -\n"
fprintf(stderr, "bluesnarfer, version %s \n"
"usage: %s [options] [ATCMD] -b bt_addr\n\n"
"ATCMD : valid AT+CMD (GSM EXTENSION)\n\n"
"TYPE : valid phonebook type ..\n"
Expand All @@ -181,7 +181,8 @@ void usage(char *bin) {
"-f name : search \"name\" in phonebook address\n"
"-s TYPE : select phonebook memory storage\n"
"-l : list aviable phonebook memory storage\n"
"-i : device info\n", VERSION, bin);
"-i : device info\n\n"
"Gently developed by Roberto Martelloni <rmartelloni@gmail.com>\n", VERSION, bin);
exit(0);
}

Expand Down

0 comments on commit 433b777

Please sign in to comment.