A couple of sensible changes from down under...

Reviewed by:	phk
Submitted by:	Stephen McKay <syssgm@devetir.qld.gov.au>
This commit is contained in:
Poul-Henning Kamp 1995-02-04 19:20:49 +00:00
parent 1adb7b0dca
commit cbaba1a477
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6181
3 changed files with 14 additions and 6 deletions

View File

@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
* $Id: ctm_pass1.c,v 1.4 1994/09/22 02:49:18 phk Exp $
* $Id: ctm_pass1.c,v 1.5 1994/11/26 08:57:40 phk Exp $
*
*/
@ -93,6 +93,10 @@ Pass1(FILE *fd)
fprintf(stderr,"Warning: contains trailing slash\n");
slashwarn++;
}
if (p[0] == '/') {
Fatal("Absolute paths are illegal.");
return Exit_Mess;
}
break;
case CTM_F_Uid:
GETFIELD(p,sep);

View File

@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
* $Id: ctm_pass2.c,v 1.4 1994/09/22 02:49:19 phk Exp $
* $Id: ctm_pass2.c,v 1.5 1994/11/26 08:57:41 phk Exp $
*
*/
@ -80,9 +80,12 @@ Pass2(FILE *fd)
break;
}
if(-1 == stat(name,&st)) {
fprintf(stderr," %s: %s doesn't exists.\n",
fprintf(stderr," %s: %s doesn't exist.\n",
sp->Key,name);
ret |= Exit_NotOK;
if (sp->Key[1] == 'R')
ret |= Exit_Forcible;
else
ret |= Exit_NotOK;
break;
}
if (j & CTM_Q_Name_Dir) {

View File

@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
* $Id: ctm_pass3.c,v 1.6 1994/11/27 16:01:29 bde Exp $
* $Id: ctm_pass3.c,v 1.7 1994/12/04 04:47:31 phk Exp $
*
*/
@ -160,7 +160,8 @@ Pass3(FILE *fd)
if(!strcmp(sp->Key,"FR")) {
if (0 != unlink(name)) {
fprintf(stderr,"<%s> unlink failed\n",name);
WRONG
if (!Force)
WRONG
}
continue;
}