]> git.decadent.org.uk Git - ion3.git/blob - debian/patches/102_config-request-fix.diff
69175f25b3f3714995273b76e7ca7f8d6d171a4f
[ion3.git] / debian / patches / 102_config-request-fix.diff
1 #! /bin/sh -e
2 if [ $# -ne 1 ]; then
3     echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
4     exit 1
5 fi
6 case "$1" in
7     -patch) patch -f --no-backup-if-mismatch -p1 < $0;;
8     -unpatch) patch -f --no-backup-if-mismatch -R -p1 < $0;;
9     *)
10         echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
11         exit 1;;
12 esac
13
14 exit 0
15 @DPATCH@                                                                                                                                                       
16 Mon Mar 19 18:37:26 GMT 2007  Tuomo Valkonen <tuomov@iki.fi>
17   * Oops, return in wrong place in fs rq check was breaking other cfgrqs
18 diff -rN -u old-ion3-darcs/ioncore/clientwin.c new-ion3-darcs/ioncore/clientwin.c
19 --- old-ion3-darcs/ioncore/clientwin.c  2007-03-25 23:14:35.000000000 +0100
20 +++ new-ion3-darcs/ioncore/clientwin.c  2007-03-25 23:14:35.000000000 +0100
21 @@ -1085,9 +1085,9 @@
22              
23              if(!region_fullscreen_scr(grp, scr, sw))
24                  cwin->flags&=~CLIENTWIN_FS_RQ;
25 +                
26 +            return TRUE;
27          }
28 -        
29 -        return TRUE;
30      }
31  
32      return FALSE;
33