From 9abe99f2369748004e64db5c499aa9be81dd3405 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Fri, 18 May 2007 01:17:52 -0500 Subject: Remove trailing slashes from Server URLs Simple clean up for the rest of the code, which also prevents a little libdownload bug relating to '//' appearing in URLs. Signed-off-by: Aaron Griffin --- lib/libalpm/server.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/libalpm') 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; -- cgit v1.2.3-24-g4f1b