173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
db_finalize(&q);
fossil_fatal("Multiple descendants");
}
}
tid = db_int(0, "SELECT rid FROM leaves, event"
" WHERE event.objid=leaves.rid"
" ORDER BY event.mtime DESC");
}
if( tid==0 ){
fossil_panic("Internal Error: unable to find a version to update to.");
}
if( tid==vid && !verboseFlag ) return; /* Nothing to update */
|
>
|
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
db_finalize(&q);
fossil_fatal("Multiple descendants");
}
}
tid = db_int(0, "SELECT rid FROM leaves, event"
" WHERE event.objid=leaves.rid"
" ORDER BY event.mtime DESC");
if( tid==0 ) tid = vid;
}
if( tid==0 ){
fossil_panic("Internal Error: unable to find a version to update to.");
}
if( tid==vid && !verboseFlag ) return; /* Nothing to update */
|