From: graham.gower Date: Tue, 12 Jan 2010 04:52:48 +0000 (+0000) Subject: Don't print an error if trying to write status file to a read only filesystem. X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=commitdiff_plain;h=fc9af348b882e9758bcfbddde05e2733eddb794a Don't print an error if trying to write status file to a read only filesystem. git-svn-id: http://opkg.googlecode.com/svn/trunk@518 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- diff --git a/libopkg/opkg_conf.c b/libopkg/opkg_conf.c index 678f219..cd636f1 100644 --- a/libopkg/opkg_conf.c +++ b/libopkg/opkg_conf.c @@ -344,7 +344,7 @@ opkg_conf_write_status_files(void) dest = (pkg_dest_t *)iter->data; dest->status_fp = fopen(dest->status_file_name, "w"); - if (dest->status_fp == NULL) { + if (dest->status_fp == NULL && errno != EROFS) { opkg_perror(ERROR, "Can't open status file %s", dest->status_file_name); ret = -1;