From: Mathis Rosenhauer Date: Tue, 4 Feb 2014 08:05:45 +0000 (+0100) Subject: drop .aec extension in favor of ccsds .rz X-Git-Tag: accepted/tizen/5.0/unified/20181102.025501~140 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=98f41b09e586b50d169f0741674b0e596f4256ed;p=platform%2Fupstream%2Flibaec.git drop .aec extension in favor of ccsds .rz --- diff --git a/src/aec.c b/src/aec.c index f438b95..86e6a5b 100644 --- a/src/aec.c +++ b/src/aec.c @@ -180,16 +180,16 @@ int main(int argc, char *argv[]) if (dflag) { - if ((ext = strstr(infn, ".aec")) == NULL) + if ((ext = strstr(infn, ".rz")) == NULL) { - fprintf(stderr, "Error: input file needs to end with .aec\n"); + fprintf(stderr, "Error: input file needs to end with .rz\n"); exit(-1); } strncpy(outfn, infn, ext - infn); } else { - sprintf(outfn, "%s.aec", infn); + sprintf(outfn, "%s.rz", infn); } if ((outfp = fopen(outfn, "w")) == NULL)