From: miker Date: Thu, 7 Feb 2008 01:26:36 +0000 (+0000) Subject: fixing readonly IDL logic X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=819e348788a666ee4eb5d52aa19b6351d75213a0;p=Evergreen.git fixing readonly IDL logic git-svn-id: svn://svn.open-ils.org/ILS/trunk@8677 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/c-apps/oils_cstore.c b/Open-ILS/src/c-apps/oils_cstore.c index fb1ea2be17..bc619f5c62 100644 --- a/Open-ILS/src/c-apps/oils_cstore.c +++ b/Open-ILS/src/c-apps/oils_cstore.c @@ -191,7 +191,7 @@ int osrfAppInitialize() { char* readonly = osrfHashGet(idlClass, "readonly"); if ( readonly && !strncasecmp( "true", readonly, 4) && - ( *method_type == 's' || *method_type == 'r' || *method_type == 'i') + ( *method_type == 'c' || *method_type == 'u' || *method_type == 'd') ) continue; method_meta = osrfNewHash();