Browse Source

Name change

Piotr Czajkowski 6 years ago
parent
commit
21d262d2ba
3 changed files with 3 additions and 3 deletions
  1. 1 1
      README.md
  2. 2 2
      makefile
  3. 0 0
      pwned.c

+ 1 - 1
README.md

@@ -4,7 +4,7 @@ Fun project to utilize awesome [';--have i been pwned?](https://haveibeenpwned.c
 
 Usage is simple:
 
-	password <password>
+	./pwned <password>
 
 It'll print ***Your password is well known!*** if your password is in ';--have i been pwned? DB. Enjoy!
 

+ 2 - 2
makefile

@@ -2,10 +2,10 @@ CFLAGS=-g -Wall -Wextra -O3 -std=gnu99
 LDLIBS=-lcurl -lssl -lcrypto
 objects=curl.o sha.o
 
-password: $(objects)
+pwned: $(objects)
 
 .PHONY: clean
 clean:
 	rm *.o
 
-default: password
+default: pwned

+ 0 - 0
password.c → pwned.c