Flesh out Blerg::Database OO layer and convenience functions
[blerg.git] / cgi / rss.c
index ae8cfea..f143e55 100644 (file)
--- a/cgi/rss.c
+++ b/cgi/rss.c
@@ -1,3 +1,6 @@
+/* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
+ * BSD-style license.  Please see the COPYING file for details.
+ */
 #include <stdio.h>
 #include <stdlib.h>
 #include <time.h>
@@ -87,18 +90,18 @@ int main (int argc, char *argv) {
        }
 
        ret = parse_url_info(path + 1, &info);
-       if ((ret & URL_INFO_AUTHOR) == 0) {
+       if ((ret & URL_INFO_NAME) == 0) {
                respond_404();
                exit(0);
        }
 
-       if (!blerg_exists(info.author)) {
+       if (!blerg_exists(info.name)) {
                respond_404();
                exit(0);
        }
 
        printf("Content-type: application/rss+xml\r\n\r\n");
 
-       fprint_rss(stdout, "chip");
+       fprint_rss(stdout, info.name);
 
 }