ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/util.C
(Generate patch)

Comparing gvpe/src/util.C (file contents):
Revision 1.5 by pcg, Wed Apr 2 03:25:17 2003 UTC vs.
Revision 1.6 by pcg, Wed Apr 2 05:15:00 2003 UTC

144 int pid; 144 int pid;
145 145
146 if ((pid = fork ()) == 0) 146 if ((pid = fork ()) == 0)
147 { 147 {
148 char *filename; 148 char *filename;
149 asprintf (&filename, "%s/%s", confbase, cb(0)); 149 asprintf (&filename, "%s/%s", confbase, cb());
150 execl (filename, filename, (char *) 0); 150 execl (filename, filename, (char *) 0);
151 exit (255); 151 exit (255);
152 } 152 }
153 else if (pid > 0) 153 else if (pid > 0)
154 { 154 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines