diff options
author | jchu <jchu> | 2004-09-03 22:18:54 +0200 |
---|---|---|
committer | jchu <jchu> | 2004-09-03 22:18:54 +0200 |
commit | 03157ad2395a6d664306648d06e03e26e7c5d33d (patch) | |
tree | a119b2e9733447b1554af8d9759b9f104786ff6c /tupkg/client | |
parent | 25b010480680d8f2f5d0cb2a12fa635aec50bc52 (diff) | |
download | aur-03157ad2395a6d664306648d06e03e26e7c5d33d.tar.gz aur-03157ad2395a6d664306648d06e03e26e7c5d33d.tar.xz |
added authentication to tupkgs and updated info in tupkg
Diffstat (limited to 'tupkg/client')
-rwxr-xr-x | tupkg/client/tupkg | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tupkg/client/tupkg b/tupkg/client/tupkg index 14eb1c0f..125288a0 100755 --- a/tupkg/client/tupkg +++ b/tupkg/client/tupkg @@ -130,11 +130,12 @@ def main(argv=None): usage() return 1 - cs = ClientSocket(files, 'localhost', 1034, "bfinch@example.net", "B0b") + cs = ClientSocket(files, 'localhost', 1034, "tu", "tu") cs.connect() if not cs.auth(): print "Error authenticating you, you bastard" + return 1 cs.sendFileMeta() |