zsh-workers
 help / color / mirror / code / Atom feed
* file mode type
@ 1997-01-29 15:23 Zefram
  0 siblings, 0 replies; only message in thread
From: Zefram @ 1997-01-29 15:23 UTC (permalink / raw)
  To: Z Shell workers mailing list

-----BEGIN PGP SIGNED MESSAGE-----

Some Unices use unsigned long for mode_t.  This patch avoids resulting
errors.

 -zefram

      *** Src/Modules/files.c	1997/01/29 03:25:41	1.11
      --- Src/Modules/files.c	1997/01/29 06:01:50
      ***************
      *** 291,297 ****
        	    nicezputs(nam, stderr);
        	    fputs(": replace `", stderr);
        	    nicezputs(q, stderr);
      ! 	    fprintf(stderr, "', overriding mode %04o? ", st.st_mode & 07777);
        	    fflush(stderr);
        	    if(!ask())
        		return 0;
      --- 291,298 ----
        	    nicezputs(nam, stderr);
        	    fputs(": replace `", stderr);
        	    nicezputs(q, stderr);
      ! 	    fprintf(stderr, "', overriding mode %04lo? ",
      ! 		(unsigned long) (st.st_mode & 07777));
        	    fflush(stderr);
        	    if(!ask())
        		return 0;
      ***************
      *** 396,402 ****
        	    nicezputs(nam, stderr);
        	    fputs(": remove `", stderr);
        	    nicezputs(arg, stderr);
      ! 	    fprintf(stderr, "', overriding mode %04o? ", st.st_mode & 07777);
        	    fflush(stderr);
        	    if(!ask())
        		return 0;
      --- 397,404 ----
        	    nicezputs(nam, stderr);
        	    fputs(": remove `", stderr);
        	    nicezputs(arg, stderr);
      ! 	    fprintf(stderr, "', overriding mode %04lo? ",
      ! 		(unsigned long) (st.st_mode & 07777));
        	    fflush(stderr);
        	    if(!ask())
        		return 0;

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBMu7pkXD/+HJTpU/hAQE3rAP/ZGwgsD/UhHB710tyXuJhxH2JUwGaMAIv
OTljzP8VZ59ubWgzNUFoiZW/CuzFKE2jLePQxMs8a2pretB3/9pUytw82Kc14Ios
jO0ua1SQMOWTworxi6i2hUQmzsyv57XQAjHctOW1EEjx/K51E6pa7z1eHJ7R1ZxO
iVp4gkD+OuE=
=eEtK
-----END PGP SIGNATURE-----


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~1997-01-29 15:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-01-29 15:23 file mode type Zefram

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).