]> git.armaanb.net Git - stagit.git/blobdiff - src/stagit-index.c
Rename desc to description
[stagit.git] / src / stagit-index.c
index 2a23e8f943dd4de5df20c96ade90564193172515..e226b0d1e1a122f30b599b844c810cfca24fe926 100644 (file)
@@ -84,8 +84,8 @@ writeheader(char *path)
        xmlencode(fp, description, strlen(description));
        fputs("</h1>\n", fp);
 
-       FILE *longdesc = fopen("desc.md", "r");
-       if (longdesc == NULL) longdesc = fopen("desc", "r");
+       FILE *longdesc = fopen("description.md", "r");
+       if (longdesc == NULL) longdesc = fopen("description", "r");
        if (longdesc != NULL) {
                char c = fgetc(longdesc);
 #ifdef HAS_CMARK