Remove '.' at the end of chmod command

This commit is contained in:
Andrey A. Chernov 1997-06-17 05:36:59 +00:00
parent f5862628ef
commit 27e4fe05fd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=6973

View File

@ -0,0 +1,19 @@
*** src/recommend.c.bak Wed Apr 2 07:15:45 1997
--- src/recommend.c Tue Jun 17 09:29:02 1997
***************
*** 52,58 ****
else if(chmdir==1)
goto nogchmod;
if(chmdir)
! printf("chmod %c+w %s.\n",chmdir==1?'g':'a',mailspooldir);
nogchmod:
return EXIT_SUCCESS;
}
--- 52,58 ----
else if(chmdir==1)
goto nogchmod;
if(chmdir)
! printf("chmod %c+w %s\n",chmdir==1?'g':'a',mailspooldir);
nogchmod:
return EXIT_SUCCESS;
}