index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-05-18 01:17:52 -0500 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-05-18 01:17:52 -0500 |
commit | 9abe99f2369748004e64db5c499aa9be81dd3405 (patch) | |
tree | 5c689972837457f9951207859899476da1367cb1 | |
parent | 4e6b7c1cde4c0ac1d035b51f9af19510a7c9135e (diff) |
-rw-r--r-- | lib/libalpm/server.c | 4 |
diff --git a/lib/libalpm/server.c b/lib/libalpm/server.c index 1d972bdb..650c594a 100644 --- a/lib/libalpm/server.c +++ b/lib/libalpm/server.c @@ -71,6 +71,10 @@ pmserver_t *_alpm_server_new(const char *url) strcpy(u->pwd, "libalpm@guest"); } + /* remove trailing slashes, just to clean up the rest of the code */ + for(int i = strlen(u->doc) - 1; u->doc[i] == '/'; --i) + u->doc[i] = '\0'; + server->s_url = u; return server; |