commit 95bb01e2a7888a61a4fbcb2e48c349e6eb15f336 from: Omar Polo date: Sat Aug 28 09:10:29 2021 UTC gopher: don't skip the initial / some gopher servers requires the selector to start with a slash. Or maybe it's the other way around, and some servers are too much forgiving. commit - 908345fb00b6daf3324a895d12b58f935ab45c9e commit + 95bb01e2a7888a61a4fbcb2e48c349e6eb15f336 blob - b4b3140046095bfc4e400d990e2bd8a7f0cf3d57 blob + 2aa44576fbd43b93153f68ec9c728e22b6624be2 --- telescope.c +++ telescope.c @@ -655,11 +655,7 @@ gopher_skip_selector(const char *path, int *ret_type) return path; } - path++; - if (*path == '/') - path++; - - return path; + return ++path; } static int