Fossil SCM
manfest is a versionable setting.
Commit
e5b250959ad4ec156758bb4601f6989ec245d0cb
Parent
87a154753774705…
1 file changed
+1
-1
M
src/db.c
+1
-1
| --- src/db.c | ||
| +++ src/db.c | ||
| @@ -2223,11 +2223,11 @@ | ||
| 2223 | 2223 | ** which letters can be used to represent flags (any permutation fo flags must |
| 2224 | 2224 | ** not be able to fully form one of the boolean values). |
| 2225 | 2225 | */ |
| 2226 | 2226 | int db_get_manifest_setting(void){ |
| 2227 | 2227 | int flg; |
| 2228 | - char *zVal = db_get("manifest", "off"); | |
| 2228 | + char *zVal = db_get_versioned("manifest", "off"); | |
| 2229 | 2229 | if( is_false(zVal) ){ |
| 2230 | 2230 | return 0; |
| 2231 | 2231 | }else if( is_truth(zVal) ) { |
| 2232 | 2232 | return MFESTFLG_RAW|MFESTFLG_UUID; |
| 2233 | 2233 | } |
| 2234 | 2234 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -2223,11 +2223,11 @@ | |
| 2223 | ** which letters can be used to represent flags (any permutation fo flags must |
| 2224 | ** not be able to fully form one of the boolean values). |
| 2225 | */ |
| 2226 | int db_get_manifest_setting(void){ |
| 2227 | int flg; |
| 2228 | char *zVal = db_get("manifest", "off"); |
| 2229 | if( is_false(zVal) ){ |
| 2230 | return 0; |
| 2231 | }else if( is_truth(zVal) ) { |
| 2232 | return MFESTFLG_RAW|MFESTFLG_UUID; |
| 2233 | } |
| 2234 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -2223,11 +2223,11 @@ | |
| 2223 | ** which letters can be used to represent flags (any permutation fo flags must |
| 2224 | ** not be able to fully form one of the boolean values). |
| 2225 | */ |
| 2226 | int db_get_manifest_setting(void){ |
| 2227 | int flg; |
| 2228 | char *zVal = db_get_versioned("manifest", "off"); |
| 2229 | if( is_false(zVal) ){ |
| 2230 | return 0; |
| 2231 | }else if( is_truth(zVal) ) { |
| 2232 | return MFESTFLG_RAW|MFESTFLG_UUID; |
| 2233 | } |
| 2234 |