Change fdopen(fd, "rw+") to fdopen(fd, "r+").
authorgraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Sun, 22 Nov 2009 23:15:05 +0000 (23:15 +0000)
committergraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Sun, 22 Nov 2009 23:15:05 +0000 (23:15 +0000)
commit010f770102220799a83245db81110df0d7940aad
tree1a209e28b397253b905b8499f1854acddb335ce8
parent7210f5571f7d93e2e62c80353a2923ee7e64968b
Change fdopen(fd, "rw+") to fdopen(fd, "r+").

It was pointed out by Basinilya in Issue 30 that the manual does not specify
"rw+" (and this causes problems on Solaris). Since mkstemp should have already
created the file, use "r+" for opening the fd in read/write mode.

git-svn-id: http://opkg.googlecode.com/svn/trunk@345 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
libopkg/pkg.c