Changeset 1426 in MondoRescue


Ignore:
Timestamp:
May 9, 2007, 11:30:02 AM (17 years ago)
Author:
Bruno Cornec
Message:

Fix a big syntax bug ;-)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/lib/mr_conf.c

    r1423 r1426  
    294294    while (i < length) {
    295295        /* Handle quotes */
    296         if (buffer[i] = '"') {
     296        if (buffer[i] == '"') {
    297297            if (found_quote) {
    298298                found_quote = FALSE;
     
    316316    i = 0;
    317317    while (i < length) {
    318         if (buffer[i] = '"') {
     318        if (buffer[i] == '"') {
    319319            if (found_quote) {
    320320                found_quote = FALSE;
Note: See TracChangeset for help on using the changeset viewer.