RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Jeff Johnson
Root: /v/rpm/cvs Email: jbj@rpm5.org
Module: rpm Date: 30-Jul-2007 04:13:32
Branch: rpm-4_5 Handle: 2007073003133200
Modified files: (Branch: rpm-4_5)
rpm/rpmio tput.c
Log:
ufdio is default.
Summary:
Revision Changes Path
1.2.2.1 +2 -2 rpm/rpmio/tput.c
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/rpmio/tput.c
============================================================================
$ cvs diff -u -r1.2 -r1.2.2.1 tput.c
--- rpm/rpmio/tput.c 25 May 2007 17:36:37 -0000 1.2
+++ rpm/rpmio/tput.c 30 Jul 2007 02:13:32 -0000 1.2.2.1
@@ -29,7 +29,7 @@
buf[0] = '\0';
fprintf(stderr, "===== Fread %s\n", path);
- fd = Fopen(path, "r.ufdio");
+ fd = Fopen(path, "r");
if (fd != NULL) {
len = Fread(buf, 1, sizeof(buf), fd);
@@ -51,7 +51,7 @@
strcpy(buf, "Hello World!\n");
fprintf(stderr, "===== Fwrite %s\n", path);
- fd = Fopen(path, "w.ufdio");
+ fd = Fopen(path, "w");
if (fd != NULL) {
len = Fwrite(buf, 1, strlen(buf), fd);
xx = Fclose(fd);
@@ .
Received on Mon Jul 30 04:13:32 2007