diff options
| author | 2022-09-23 00:03:45 +0200 | |
|---|---|---|
| committer | 2022-09-23 00:03:45 +0200 | |
| commit | ce26879f2fd47a86eb69d1e59bb09a35b849c41c (patch) | |
| tree | 356ca4f25ba52bc0f1a9c241df5eb243045ecb5f /data.c | |
| parent | _timeline_parent() does not need to be recursive (or does it?). (diff) | |
| download | snac2-ce26879f2fd47a86eb69d1e59bb09a35b849c41c.tar.gz snac2-ce26879f2fd47a86eb69d1e59bb09a35b849c41c.tar.xz snac2-ce26879f2fd47a86eb69d1e59bb09a35b849c41c.zip | |
Added comment about what to do with recursive parent storage.
Diffstat (limited to 'data.c')
| -rw-r--r-- | data.c | 2 |
1 files changed, 2 insertions, 0 deletions
| @@ -384,6 +384,8 @@ d_char *timeline_list(snac *snac) | |||
| 384 | void _timeline_parent(snac *snac, char *parent, char *child) | 384 | void _timeline_parent(snac *snac, char *parent, char *child) |
| 385 | /* add child to parent's children list */ | 385 | /* add child to parent's children list */ |
| 386 | { | 386 | { |
| 387 | /* FIXME: this must be recursive, but *ONLY* for file renaming */ | ||
| 388 | |||
| 387 | if (parent != NULL) { | 389 | if (parent != NULL) { |
| 388 | xs *pfn = _timeline_find_fn(snac, parent); | 390 | xs *pfn = _timeline_find_fn(snac, parent); |
| 389 | 391 | ||