Changeset 1422 in MondoRescue for branches/stable/mondo/src/lib/mr_err.c


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

mr_conf now handles # inside strings correctly (before they were considered as a comment which they are not !)

File:
1 edited

Legend:

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

    r1390 r1422  
    2525void mr_exit(int errorcode, const char *message) {
    2626
    27     mr_cleanup();
     27    if (mr_cleanup != NULL) {
     28        mr_cleanup();
     29    }
    2830    if (message != NULL) {
    2931        fprintf(stderr,"%s\n",message);
Note: See TracChangeset for help on using the changeset viewer.