diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/patches/0170-typo.patch | 31 |
2 files changed, 33 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 1511132..46812e7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,9 +12,10 @@ xsane (0.999-4) UNRELEASED; urgency=medium * Prevent autoconf FTBFS: - debian/rules: Change from autotools_dev to autoreconf. - debian/control: Remove Build-Depends autotools-dev and add dh_autoreconf. - - New patches/0005-m4.patch to add missing tags. + - New debian/patches/0005-m4.patch to add missing tags. * debian/watch: - Bump Version to 4 (no changes required). + * Refresh debian/patches/0170-typo.patch. -- Jörg Frings-Fürst <debian@jff-webhosting.net> Sat, 09 Apr 2016 00:12:46 +0200 diff --git a/debian/patches/0170-typo.patch b/debian/patches/0170-typo.patch index 8864cd7..f84270a 100644 --- a/debian/patches/0170-typo.patch +++ b/debian/patches/0170-typo.patch @@ -30,6 +30,15 @@ Index: trunk/src/xsane.c {"print-filenames", no_argument, 0, 'p'}, {"force-filename", required_argument, 0, 'N'}, {0, } +@@ -2324,7 +2324,7 @@ static RETSIGTYPE xsane_sigchld_handler( + pid = waitpid(childprocess->pid, &status, WNOHANG); + if ( (WIFEXITED(status)) && (pid == childprocess->pid) ) + { +- DBG(DBG_info, "deleteing pid %d from list\n", childprocess->pid); ++ DBG(DBG_info, "deleting pid %d from list\n", childprocess->pid); + + nextprocess = childprocess->next; + free(childprocess); /* free memory of element */ @@ -5787,7 +5787,7 @@ static int xsane_init(int argc, char **a xsane.main_window_fixed = 1; break; @@ -39,3 +48,25 @@ Index: trunk/src/xsane.c xsane.main_window_fixed = 0; break; +Index: trunk/src/xsane-preview.c +=================================================================== +--- trunk.orig/src/xsane-preview.c ++++ trunk/src/xsane-preview.c +@@ -7575,7 +7575,7 @@ void preview_display_valid(Preview *p) + } + else if ((xsane.medium_changed) || (xsane.xsane_channels != p->preview_channels) || (p->invalid) ) /* preview is not valid */ + { +- DBG(DBG_info, "preview not vaild\n"); ++ DBG(DBG_info, "preview not valid\n"); + + gtk_widget_show(p->invalid_pixmap); + gtk_widget_hide(p->scanning_pixmap); +@@ -7593,7 +7593,7 @@ void preview_display_valid(Preview *p) + } + else /* preview is valid */ + { +- DBG(DBG_info, "preview vaild\n"); ++ DBG(DBG_info, "preview valid\n"); + + gtk_widget_show(p->valid_pixmap); + gtk_widget_hide(p->scanning_pixmap); |