~ubuntu-branches/ubuntu/saucy/libgksu1.2/saucy

« back to all changes in this revision

Viewing changes to debian/patches/02_fix_for_waitpid.patch

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2006-03-24 21:50:28 UTC
  • Revision ID: james.westby@ubuntu.com-20060324215028-lthkab93euf8gsr8
Tags: 1.3.6-1ubuntu3
* debian/patches/02_fix_for_waitpid.patch:
  - fix a problem with the waitpid() loop returning too early

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
diff -Nur libgksu1.2-1.3.6/libgksu/gksu-context.c libgksu1.2-1.3.6.new/libgksu/gksu-context.c
 
2
--- libgksu1.2-1.3.6/libgksu/gksu-context.c     2006-03-24 18:14:01.000000000 +0100
 
3
+++ libgksu1.2-1.3.6.new/libgksu/gksu-context.c 2006-03-24 18:15:19.000000000 +0100
 
4
@@ -1530,7 +1530,7 @@
 
5
 
 
6
          bzero(buffer, 256);
 
7
          if(!fgets (buffer, 255, infile))
 
8
-           break;
 
9
+           continue;
 
10
          fprintf (stderr, "%s", buffer);
 
11
        }
 
12