Skip to content

Commit

Permalink
podcastdl-0.3.2
Browse files Browse the repository at this point in the history
Summary for 0.3.2 podcastdl release
-----------------------------------
Fix a bug caused by changes in the url control by curl
  • Loading branch information
rosorio committed Oct 24, 2018
1 parent 483ec55 commit f45fa01
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
11 changes: 8 additions & 3 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
Tue June 13 2015.
Summary for 0.3.2 podcastdl release
Fix a bug caused by changes in the url control by curl

Tue Aug 14 2012.
Summary for 0.3.1 podcastdl release
Fix missing DSO linking reference (for clang at least)

Tue Aug 14 2012.
Summary for 0.3.0 podcastdl release
Convert the build system to CMake
Fix filename hadling using guid if available insted of enclosure_url
Fix compatibility with other unixes using time.h instead of sys/time.h
Fix filename hadling using guid if available instead of enclosure_url
Fix compatibility with other Unixes using time.h instead of sys/time.h

Sun Jun 05 2011.
Summary for 0.2.1 podcastdl release
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include_directories(${PODCASTDL_SOURCE_DIR}/src /usr/include /usr/local/include)
link_directories(${PODCASTDL_SOURCE_DIR}/src /usr/lib /usr/local/lib)
add_definitions( -DPODCASTDL_VERSION_STRING=\"0.3.1\" )
add_definitions( -DPODCASTDL_VERSION_STRING=\"0.3.2\" )


add_executable(podcastdl podcastdl.c podcast.c util.c)
Expand Down
9 changes: 8 additions & 1 deletion src/podcastdl.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ get_podcast_list(char * url, podcast_head_t * podcast,int maxdays)
time_t now = time(NULL);
mrss_category_t *tags;
char taglist[MAX_FILENAME_LENGTH + 1];
char * p;

p = strpbrk(url, "\r\n");
if (p != NULL) {
*p = '\0';
}


debug("Parse feed %s\n",url);
ret = mrss_parse_url_with_options_and_error(url,&feed,NULL,&code);
Expand Down Expand Up @@ -175,7 +182,7 @@ usage(void)
static void
version(void)
{
printf("podcastdl %s, Copyright (c) 2010 Rodrigo OSORIO <ros@bebik.net>\n",
printf("podcastdl %s, wrote by Rodrigo OSORIO <ros@bebik.net>\n",
PODCASTDL_VERSION_STRING);
exit(0);
}
Expand Down

0 comments on commit f45fa01

Please sign in to comment.