X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FFlock.c;h=55d84fefd3396aa545a13665daae3facc07b654a;hp=8ea0ed5f3d320ff112336724b1549a0cb04a6a6c;hb=f2dfb330dfc756851edc4eecf828a435e7f5f279;hpb=1d4b809bf491b417dee3994f6f9e9a897cb1d2ca diff --git a/sources/Flock.c b/sources/Flock.c index 8ea0ed5..55d84fe 100644 --- a/sources/Flock.c +++ b/sources/Flock.c @@ -26,7 +26,7 @@ * * Usage: flock -h give all info's * - * $Id: Flock.c,v 1.2 2002/11/17 17:30:51 piccardi Exp $ + * $Id: Flock.c,v 1.3 2002/11/18 23:54:01 piccardi Exp $ * *****************************************************************************/ /* @@ -111,7 +111,7 @@ int main(int argc, char *argv[]) printf("You should set a read or a write lock\n"); usage(); } - fd = open(argv[optind], O_RDWR); /* open the file to be locked */ + fd = open(argv[optind], O_RDONLY); /* open the file to be locked */ if (fd < 0) { /* on error exit */ perror("Wrong filename"); exit(1);